0byt3m1n1-V2
Path:
/
home
/
phangnga
/
libraries
/
cegcore
/
libs
/
[
Home
]
File: cache.php
<?php namespace GCore\Libs; /* @copyright:ChronoEngine.com @license:GPLv2 */defined('_JEXEC') or die('Restricted access'); defined("GCORE_SITE") or die; class Cache{ protected static $instances; public static function getInstance($domain = 'gcore', $params = array(), $engine = 'file'){ $domain = !empty($domain) ? $domain : 'gcore'; $engine = (func_num_args() > 2) ? $engine : Base::getConfig('cache_engine'); if(empty(self::$instances[$engine][$domain])){ $class = '\GCore\Libs\CacheEngines\\'.Str::camilize($engine); self::$instances[$engine][$domain] = new $class($domain, $params); } return self::$instances[$engine][$domain]; } public function get($key){ } public function set($key, $data){ } public function clear($key){ } public function destroy(){ } } ?>
©
2018.