00001 <?php 00002 /** 00003 * Interface for cache access 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface ICache { 00009 public function get_cache_id(); 00010 public function set_cache_id($cacheid); 00011 public function is_cached(); 00012 } 00013 ?>