input->get('view', 'styles'); $layout = $this->input->get('layout', 'default'); $id = $this->input->getInt('id'); $document = JFactory::getDocument(); // For JSON requests if ($document->getType() == 'json') { $view = new TemplatesViewStyle; // Get/Create the model if ($model = new TemplatesModelStyle) { $model->addTablePath(JPATH_ADMINISTRATOR . '/components/com_templates/tables'); // Push the model into the view (as default) $view->setModel($model, true); } $view->document = $document; return $view->display(); } // Check for edit form. if ($view == 'style' && $layout == 'edit' && !$this->checkEditId('com_templates.edit.style', $id)) { // Somehow the person just went to the form - we don't allow that. $this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id)); $this->setMessage($this->getError(), 'error'); $this->setRedirect(JRoute::_('index.php?option=com_templates&view=styles', false)); return false; } return parent::display(); } }