X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fclasses%2Frdf.class.php;h=78c7e95fbbd267e132e9a4d5745f6161b6b44615;hp=da82f0349f97f260bf7a6073530b53b80bce7676;hb=dba0db3d371da5a17ca7da6a8cde2596251660b7;hpb=63834c2a35794cec2dd7bd70678abf505b970f86 diff --git a/inc/classes/rdf.class.php b/inc/classes/rdf.class.php index da82f0349f..78c7e95fbb 100644 --- a/inc/classes/rdf.class.php +++ b/inc/classes/rdf.class.php @@ -413,8 +413,7 @@ class fase4_rdf { * @return string Displays RDF Content ( using _display() ) * @see _remote_file, cache() */ - function finish($return = false) - { + function finish($return = false) { $this->out = str_replace('$', '$', $this->out); if (!$return) { @@ -440,8 +439,7 @@ class fase4_rdf { * @return string Displays RDF Content ( using _display() ) * @see _remote_file, cache() */ - function use_dynamic_display( $bool ) - { + function use_dynamic_display( $bool ) { $this->_use_dynamic_display = $bool; return true; } @@ -454,8 +452,7 @@ class fase4_rdf { * @param string $data RDF File XML Data * @see _clear_Items() */ - function _parse_xRDF( $data ) - { + function _parse_xRDF( $data ) { $this->_clear_Items(); $xml_parser = xml_parser_create(); xml_set_object($xml_parser,$this); @@ -466,7 +463,7 @@ class fase4_rdf { $this->_throw_exception(sprintf("XML error: %s at line %d", xml_error_string(xml_get_error_code($xml_parser)), xml_get_current_line_number($xml_parser)).'

Exception in function parse_RDF().'); - } + } // END - if xml_parser_free($xml_parser); } @@ -477,17 +474,15 @@ class fase4_rdf { * @access public * @author Stefan Saasen * @param int $seconds time files will be cached (in seconds). - * @return boolean - * @see _refresh + * @return boolean + * @see _refresh */ - function set_refresh( $seconds ) - { + function set_refresh( $seconds ) { $this->_refresh = (time() - $seconds); return true; } - function set_salt( $saltPara ) - { + function set_salt( $saltPara ) { $this->salt = $saltPara; return true; } @@ -804,7 +799,7 @@ class fase4_rdf { case 'textinput': if(isset($this->_display_opt['textinput']) && ($this->_display_opt['textinput'] != 'hidden') && $this->_item['name'] && $this->_item['link']) { $this->_output .= "\n"; - $this->_output .= "
_item['link']."\" "; + $this->_output .= "_item['link']."\" "; if(isset($this->_link_target)) { $this->_output .= "target=\"".$this->_link_target."\" "; } $this->_output .= "method=\"get\">\n"; $this->_output .= "
".$this->_item['title']."
"; @@ -1033,7 +1028,7 @@ class fase4_rdf { // get_cache_update_time() clearstatcache(); if($this->_use_dynamic_display == true) { - $_rdf = @implode(' ', $this->_rdf_data()); // -> proxy + $_rdf = implode(' ', $this->_rdf_data()); // -> proxy if(!$_rdf) { $this->_throw_exception( $this->_remote_file.' is not available' ); } @@ -1041,7 +1036,7 @@ class fase4_rdf { $this->_update_cache( $_rdf ); $data = $this->_output; } else { - $_rdf = @implode(' ', $this->_rdf_data()); // -> proxy + $_rdf = implode(' ', $this->_rdf_data()); // -> proxy if(!$_rdf) { $this->_throw_exception( $this->_remote_file.' is not available' ); } @@ -1056,7 +1051,7 @@ class fase4_rdf { $this->_parse_xRDF( implode(' ', file($_cache_f)) ); $data = $this->_output; } else { - $data = @implode(' ', file($_cache_f)); + $data = implode(' ', file($_cache_f)); } } return trim($data); @@ -1080,8 +1075,7 @@ class fase4_rdf { if($arr[0]=='') { $path = '/'; } - for($i = '0';$i<$c;$i++) - { + for($i = '0';$i<$c;$i++) { if($arr[$i]!='') { $path .= $arr[$i].'/'; if(!@is_dir($path)) {