Beispiel #1
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     $this->table = \fpcm\classes\database::tableFiles;
     $this->basepath = \fpcm\classes\baseconfig::$uploadDir;
     $this->exts = image::$allowedExts;
     parent::__construct();
 }
 /**
  * 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;
 }
Beispiel #3
0
 /**
  * Konstruktor
  */
 public function __construct()
 {
     $this->basepath = \fpcm\classes\baseconfig::$dbdumpDir;
     $this->exts = dbbackup::$allowedExts;
     parent::__construct();
 }