public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
Exemple #2
0
 public function removeToplinkChild($id)
 {
     TOPLINK_BOL_ToplinkChildrenDao::getInstance()->deleteById($id);
 }