| 1 | <?php |
||
| 10 | class CmsCache extends Component |
||
| 11 | { |
||
| 12 | |||
| 13 | private static $instance = null; |
||
| 14 | |||
| 15 | const DIR = '/../data/cache/cms/'; |
||
| 16 | |||
| 17 | public static function getInstance() |
||
| 24 | |||
| 25 | public function has($key) |
||
| 31 | |||
| 32 | public function get($key) |
||
| 39 | |||
| 40 | public function save($key, $data) |
||
| 48 | |||
| 49 | private function file($key) |
||
| 53 | |||
| 54 | } |