12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- class CToolsCssCache implements DrupalCacheInterface {
-
- public function clear($cid = NULL, $wildcard = FALSE) {
-
-
-
-
-
- if ($wildcard) {
- ctools_include('css');
- ctools_css_flush_caches();
- }
- }
-
- public function get($cid) {
- return FALSE;
- }
-
- public function getMultiple(&$cids) {
- return array();
- }
-
- public function isEmpty() {
- return FALSE;
- }
-
- public function set($cid, $data, $expire = CACHE_PERMANENT) {
- }
- }
|