_optionIndexes = array(); $this->_optionBlocks = array(); } public function __get($key) { switch ($key) { case 'optionIndexes': return $this->_optionIndexes; case 'optionBlocks': return $this->_optionBlocks; } throw new OutOfBoundsException('Invalid key'); } public function addOptionIndex($target, $text) { $this->_optionIndexes[$target] = $text; } public function addOptionBlock($html) { $this->_optionBlocks[] = $html; } }