예제 #1
0
 /**
  *	Удалить файл[ы]
  * @access protected
  */
 protected function sys_unset()
 {
     $this->_flush();
     $files = $this->_get();
     $this->_flush();
     $data = $this->extjs_unset_json(false);
     if (!empty($files)) {
         foreach ($files as $file) {
             file_system::remove_file($file->real_name);
         }
     }
     response::send($data, 'json');
 }