From 2c306fdce012466483ac1c23524e31744d7ea79d Mon Sep 17 00:00:00 2001 From: zYne Date: Fri, 9 Feb 2007 22:43:38 +0000 Subject: [PATCH] --- lib/Doctrine/Cache/Driver.php | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/lib/Doctrine/Cache/Driver.php b/lib/Doctrine/Cache/Driver.php index ca9cfbbd2..dc57452d9 100644 --- a/lib/Doctrine/Cache/Driver.php +++ b/lib/Doctrine/Cache/Driver.php @@ -33,5 +33,47 @@ */ abstract class Doctrine_Cache_Driver implements Doctrine_Cache_Interface { + /** + * @var array $options an array of options + */ + protected $options; + + /** + * constructor + * + * @param array $options an array of options + */ + public function __construct($options) + { + $this->options = $options; + } + /** + * setOption + * + * @param mixed $option the option name + * @param mixed $value option value + * @return boolean TRUE on success, FALSE on failure + */ + public function setOption($option, $value) + { + if (isset($this->_options[$option])) { + $this->_options[$option] = $value; + return true; + } + return false; + } + /** + * getOption + * + * @param mixed $option the option name + * @return mixed option value + */ + public function getOption($option) + { + if ( ! isset($this->_options[$option])) { + return null; + } + return $this->_options[$option]; + } }