コード例 #1
0
ファイル: imagelist.php プロジェクト: sea75300/fanpresscm3
 /**
  * Konstruktor
  */
 public function __construct()
 {
     $this->table = \fpcm\classes\database::tableFiles;
     $this->basepath = \fpcm\classes\baseconfig::$uploadDir;
     $this->exts = image::$allowedExts;
     parent::__construct();
 }
コード例 #2
0
 /**
  * Gibt Liste von Dateien zurück
  * @return array
  */
 public function getFolderList()
 {
     $files = parent::getFolderList();
     $idxkey = array_search(\fpcm\classes\baseconfig::$articleTemplatesDir . 'index.html', $files);
     unset($files[$idxkey]);
     return $files;
 }
コード例 #3
0
ファイル: backuplist.php プロジェクト: sea75300/fanpresscm3
 /**
  * Konstruktor
  */
 public function __construct()
 {
     $this->basepath = \fpcm\classes\baseconfig::$dbdumpDir;
     $this->exts = dbbackup::$allowedExts;
     parent::__construct();
 }