Example #1
0
 public static function getOrganisations()
 {
     if (self::$organisations === null) {
         self::$db = ECPFactory::getPDO("organisatie");
         $org = new Organisatie();
         $org->setActief(1);
         self::$organisations = Organisatie::findByExample(self::$db, $org);
     }
     return self::$organisations;
 }