registerTask( 'show', 'display' ); $this->registerTask('postInstall', 'postInstall'); $this->registerTask('information', 'information'); } /** * Standard display control structure * */ function display( ) { $this->view = & $this->getView("help"); parent::display(); } function cancel() { $this->setRedirect( 'index.php?option=com_joomfish' ); } function postinstall() { // get the view $this->view = & $this->getView("help"); // Set the layout $this->view->setLayout('postinstall'); $this->view->display(); } function information() { // get the view $this->view = & $this->getView("help"); // Set the layout $this->view->setLayout('information'); $this->view->display(); } } ?>