This commit is contained in:
Romain Neutron
2012-04-26 00:55:53 +02:00
parent edbfff226e
commit ade22295ad
631 changed files with 92375 additions and 101763 deletions

View File

@@ -17,11 +17,12 @@
*/
interface cache_cacheableInterface
{
public function get_cache_key($option = null);
public function get_data_from_cache($option = null);
public function get_cache_key($option = null);
public function set_data_to_cache($value, $option = null, $duration = 0);
public function get_data_from_cache($option = null);
public function delete_data_from_cache($option = null);
public function set_data_to_cache($value, $option = null, $duration = 0);
public function delete_data_from_cache($option = null);
}