Example #1
0
 /**
  * Close the file
  *
  * @copyright
  * @author 		RolandD
  * @todo
  * @see
  * @access 		public
  * @param
  * @return
  * @since 		3.0
  */
 public function closeFile($removefolder = true)
 {
     $this->data->close();
     $this->_xml_cache = false;
     $this->_closed = true;
     parent::closeFile($removefolder);
 }
Example #2
0
 /**
  * Construct the class and its settings
  *
  * @copyright
  * @author		RolandD
  * @todo
  * @see
  * @access 		public
  * @param
  * @return
  * @since 		3.0
  */
 public function __construct()
 {
     parent::__construct();
 }
Example #3
0
 /**
  * Close the file
  *
  * @copyright
  * @author 		RolandD
  * @todo
  * @see
  * @access 		public
  * @param
  * @return
  * @since 		3.0
  */
 public function closeFile($removefolder = true)
 {
     fclose($this->fp);
     $this->_closed = true;
     parent::closeFile($removefolder);
 }