Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
cache_storage.inc
1 <?php
25 require_once SQ_INCLUDE_PATH.'/asset.inc';
26 
38 class Cache_Storage extends Asset
39 {
40 
41 
48  function __construct($assetid=0)
49  {
50  parent::__construct($assetid);
51 
52  }//end constructor
53 
54 
66  public static function isAvailable()
67  {
68  return TRUE;
69 
70  }//end constructor
71 
72 
90  function store($cache_key, $perm_key, $url, $assetid, $data, $expiry)
91  {
92  return FALSE;
93 
94  }//end store()
95 
96 
111  function read($cache_key, $perm_key, $url, $assetid)
112  {
113  return FALSE;
114 
115  }//end read()
116 
117 
124  function clearAll()
125  {
126  return;
127 
128  }//end clearAll()
129 
130 
137  function canClearByAssetid()
138  {
139  return FALSE;
140 
141  }//end canClearByAssetid()
142 
143 
152  function clear($assetids)
153  {
154  return;
155 
156  }//end clear()
157 
158 
166  {
167  return FALSE;
168 
169  }//end cleanExpiredEntries()
170 
171 
180  function getFilePaths($assetids)
181  {
182  return Array();
183 
184  }//end getFilePaths()
185 
186 
195  function getAllFilePaths($option='')
196  {
197  return Array();
198 
199  }//end getAllFilePaths()
200 
201 
215  function clearCachedAssetsByUrl($url)
216  {
217  return;
218  }
219 
220 }//end class
221 
222 ?>