예제 #1
0
파일: meta_dao.php 프로젝트: vazahat/dudex
 /**
  * Returns an instance of class (singleton pattern implementation).
  *
  * @return OASEO_BOL_MetaDao
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
예제 #2
0
파일: service.php 프로젝트: vazahat/dudex
 /**
  * @param string $key
  * @return OASEO_BOL_Meta
  */
 public function getEntryByKey($key)
 {
     return $this->metaDao->findEntryByKey($key);
 }