Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_hikashop/controllers/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package HikaShop for Joomla!
* @version 2.2.3
* @author hikashop.com
* @copyright (C) 2010-2013 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
class ModulesController extends hikashopController{
var $toggle = array();
var $type='modules';
function __construct(){
parent::__construct();
$this->display[]='selectmodules';
$this->display[]='savemodules';
}
function selectmodules(){
JRequest::setVar( 'layout', 'selectmodules' );
return parent::display();
}
function savemodules(){
JRequest::setVar( 'layout', 'savemodules' );
return parent::display();
}
function edit(){
if(JRequest::getInt('fromjoomla')){
$app = JFactory::getApplication();
$context = 'com_modules.edit.module';
$id = hikashop_getCID('id');
if($id){
$values = (array) $app->getUserState($context . '.id');
$index = array_search((int) $id, $values, true);
if (is_int($index)){
unset($values[$index]);
$app->setUserState($context . '.id', $values);
}
}
}
return parent::edit();
}
}