Example #1
0
 function __construct()
 {
     parent::__construct();
     $bps = $this->getMyBPSData();
     $S = new Serie($bps["SerieID"]);
     $F = new mFile();
     $F->setDir($S->A("dir"), true);
     mFolgeGUI::$Serie = $S;
     $E = array();
     while ($t = $F->getNextEntry()) {
         if (!$t->A("FileIsDir")) {
             $newFilename = $t->A("FileName");
             if (Util::isWindowsHost()) {
                 $newFilename = utf8_encode($newFilename);
             }
             $E[] = $newFilename;
         }
     }
     mFolgeGUI::$files = $E;
     mFolgeGUI::$found = array();
 }
Example #2
0
 function __construct($collection = null)
 {
     $this->collection = $collection;
     parent::__construct();
 }
 public function __construct($id, $collectionOf)
 {
     parent::__construct();
     $this->setCollectionOf(substr($collectionOf, 1));
 }