File: /home/confeduphaar/backip-old-files/administrator/components/com_k2/controllers/category.php
<?php
/**
* @version 2.9.x
* @package K2
* @author JoomlaWorks https://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2018 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
jimport('joomla.application.component.controller');
class K2ControllerCategory extends K2Controller
{
public function display($cachable = false, $urlparams = array())
{
JRequest::setVar('view', 'category');
parent::display();
}
public function save()
{
JRequest::checkToken() or jexit('Invalid Token');
$model = $this->getModel('category');
$model->save();
}
public function saveAndNew()
{
JRequest::checkToken() or jexit('Invalid Token');
$model = $this->getModel('category');
$model->save();
}
public function apply()
{
$this->save();
}
public function cancel()
{
$application = JFactory::getApplication();
$application->redirect('index.php?option=com_k2&view=categories');
}
}