getModel('extraFields'); $view = $this->getView('extrafieldsgroup', 'html'); $view->setModel($model, true); parent::display(); } function save() { JRequest::checkToken() or jexit('Invalid Token'); $model = $this->getModel('extraFields'); $view = $this->getView('extrafieldsgroup', 'html'); $view->setModel($model, true); $model->saveGroup(); } function apply() { $this->save(); } function cancel() { $mainframe = JFactory::getApplication(); $mainframe->redirect('index.php?option=com_k2&view=extrafieldsgroups'); } }