Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/administrator/components/com_hikamarket/controllers/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package HikaMarket for Joomla!
* @version 3.1.1
* @author Obsidev S.A.R.L.
* @copyright (C) 2011-2020 OBSIDEV. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
class zoneMarketController extends hikamarketController {
protected $rights = array(
'display' => array('gettree'),
'add' => array(),
'edit' => array(),
'modify' => array(),
'delete' => array()
);
protected $type = 'zone';
protected $config = null;
public function __construct($config = array(), $skip = false) {
parent::__construct($config, $skip);
$this->config = hikamarket::config();
}
public function getTree() {
$zone_key = hikaInput::get()->getVar('zone_key', null);
$displayFormat = hikaInput::get()->getVar('displayFormat',
'');
$search = hikaInput::get()->getVar('search', null);
$nameboxType = hikamarket::get('type.namebox');
$options = array(
'zone_key' => $zone_key,
'displayFormat' => $displayFormat
);
$ret = $nameboxType->getValues($search, 'zone', $options);
if(!empty($ret)) {
echo json_encode($ret);
exit;
}
echo '[]';
exit;
}
}