Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_jamegafilter/controllers/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* ------------------------------------------------------------------------
* JA Megafilter Component
* ------------------------------------------------------------------------
* Copyright (C) 2004-2016 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* This file may not be redistributed in whole or significant part.
* ------------------------------------------------------------------------
*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
class JaMegaFilterControllerDefault extends JControllerForm
{
function add()
{
if (!JFactory::getUser()->authorise('jamegafilter.create',
'com_jamegafilter'))
{
$this->setMessage(JText::_('JERROR_ALERTNOAUTHOR'),
'error');
$this->setRedirect(JRoute::_('index.php?option=com_jamegafilter&view=defaults',
false));
$this->redirect();
}
parent::add();
}
function edit($key = NULL, $urlVar = NULL)
{
if (!JFactory::getUser()->authorise('jamegafilter.edit',
'com_jamegafilter'))
{
$this->setMessage(JText::_('JERROR_ALERTNOAUTHOR'),
'error');
$this->setRedirect(JRoute::_('index.php?option=com_jamegafilter&view=defaults',
false));
$this->redirect();
}
parent::edit($key = NULL, $urlVar = NULL);
}
function saveobj() {
if (!JFactory::getUser()->authorise('jamegafilter.edit',
'com_jamegafilter'))
{
$this->setMessage(JText::_('JERROR_ALERTNOAUTHOR'),
'error');
$this->setRedirect(JRoute::_('index.php?option=com_jamegafilter&view=defaults',
false));
$this->redirect();
}
$model = $this->getModel();
return $model->saveobj();
}
function jaapply() {
if (!JFactory::getUser()->authorise('jamegafilter.edit',
'com_jamegafilter'))
{
$this->setMessage(JText::_('JERROR_ALERTNOAUTHOR'),
'error');
$this->setRedirect(JRoute::_('index.php?option=com_jamegafilter&view=defaults',
false));
$this->redirect();
}
$obj = $this->saveobj();
$this->setMessage(JText::_('COM_JAMEGAFILTER_SAVE_SUCCESS'));
$this->setRedirect('index.php?option=com_jamegafilter&view=default&layout=edit&id='.$obj->id);
}
function jasave() {
if (!JFactory::getUser()->authorise('jamegafilter.edit',
'com_jamegafilter'))
{
$this->setMessage(JText::_('JERROR_ALERTNOAUTHOR'),
'error');
$this->setRedirect(JRoute::_('index.php?option=com_jamegafilter&view=defaults',
false));
$this->redirect();
}
$this->saveobj();
$app = JFactory::getApplication();
$app->enqueueMessage(JText::_('COM_JAMEGAFILTER_SAVE_SUCCESS'));
$this->setRedirect('index.php?option=com_jamegafilter');
}
}