Example #1
0
 public function __construct()
 {
     $this->config = $GLOBALS['config'];
     $this->path = $this->config['project_root'];
     foreach (array_diff(scandir($this->path), array('.', '..')) as $name) {
         $project = new Project($name);
         if ($project->isVisible()) {
             $this->projects[$name] = $project;
         }
     }
 }