Example #1
0
 /**
  * Get the cache object
  * 
  * Cache object defined by Configuration::SetCacheClass()
  * @return Cache
  */
 private static function _Cache()
 {
     if (is_null(self::$_cache)) {
         self::$_cache = \ORM\Utilities\Configuration::GetCache();
     }
     return self::$_cache;
 }