コード例 #1
0
 /**
  * Singleton access for the class via admin
  * 
  * @access public
  * @return Memcache_Cache_Module
  */
 public function iAdmin()
 {
     if (!self::$_singleton instanceof Memcache_Cache_Module) {
         self::$_singleton = new self();
     }
     return self::$_singleton;
 }