From e8b60312037e54c34a06d6f57d7c21946cf3cd1f Mon Sep 17 00:00:00 2001 From: xue <> Date: Wed, 28 Dec 2005 20:17:54 +0000 Subject: Modified the way to access application singleton. IService and IModule interfaces are also adjusted accordingly. --- framework/Data/TSqliteCache.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'framework/Data/TSqliteCache.php') diff --git a/framework/Data/TSqliteCache.php b/framework/Data/TSqliteCache.php index 865c2a47..d2955ccd 100644 --- a/framework/Data/TSqliteCache.php +++ b/framework/Data/TSqliteCache.php @@ -47,7 +47,7 @@ * * $cache=new TSqliteCache; // TSqliteCache may also be loaded as a Prado application module * $cache->setDbFile($dbFilePath); - * $cache->init(null); + * $cache->init(); * $cache->add('object',$object); * $object2=$cache->get('object'); * @@ -109,19 +109,18 @@ class TSqliteCache extends TModule implements ICache * property is set, and creates a SQLiteDatabase instance for it. * The database or the cache table does not exist, they will be created. * Expired values are also deleted. - * @param TApplication Prado application, can be null * @param TXmlElement configuration for this module, can be null * @throws TConfigurationException if sqlite extension is not installed, * DbFile is set invalid, or any error happens during creating database or cache table. */ - public function init($application,$config) + public function init($config=null) { - parent::init($application,$config); + parent::init($config); if(!function_exists('sqlite_open')) throw new TConfigurationException('sqlitecache_extension_required'); if($this->_file===null) - $this->_file=$application->getRuntimePath().'/sqlite.cache'; + $this->_file=$this->getApplication()->getRuntimePath().'/sqlite.cache'; $error=''; if(($this->_db=new SQLiteDatabase($this->_file,0666,$error))===false) throw new TConfigurationException('sqlitecache_connection_failed',$error); @@ -137,7 +136,7 @@ class TSqliteCache extends TModule implements ICache throw new TConfigurationException('sqlitecache_table_creation_failed',sqlite_error_string(sqlite_last_error())); $this->_db->query('DELETE FROM '.self::CACHE_TABLE.' WHERE expire<>0 AND expire<'.time()); $this->_initialized=true; - $application->setCache($this); + $this->getApplication()->setCache($this); } /** -- cgit v1.2.3