. */ /** * Base class for cache drivers. * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.org * @since 1.0 * @version $Revision: 4910 $ * @author Konsta Vesterinen */ abstract class Doctrine_Cache_Driver implements Doctrine_Cache_Interface { /** * @var array $_options an array of options */ protected $_options = array(); /** * 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]; } }