* @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) {
* @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;
}
* @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);
$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)).'<br /><br />Exception in function parse_RDF().');
- }
+ } // END - if
xml_parser_free($xml_parser);
}
* @access public
* @author Stefan Saasen <s@fase4.com>
* @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;
}
// 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' );
}
$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' );
}
$this->_parse_xRDF( implode(' ', file($_cache_f)) );
$data = $this->_output;
} else {
- $data = @implode(' ', file($_cache_f));
+ $data = implode(' ', file($_cache_f));
}
}
return trim($data);
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)) {