_view = $view; } /** * Set the plugin * @param CU_Controller_Plugin_MasterView $plugin */ public function setPlugin($plugin) { $this->_plugin = $plugin; } /** * Append a master view to the stack * @param string $script */ public function append($script) { $this->_plugin->append($script); } /** * Get the view * @return Zend_View */ public function getView() { return $this->_view; } }