Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/administrator/components/com_hikashop/helpers/checkout/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package HikaShop for Joomla!
* @version 4.4.1
* @author hikashop.com
* @copyright (C) 2010-2021 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
include_once HIKASHOP_HELPER . 'checkout.php';
class hikashopCheckoutSeparatorHelper extends
hikashopCheckoutHelperInterface {
protected $params = array(
'type' => array(
'name' => 'TYPE_OF_SEPARATION',
'type' => 'radio',
'default' => 'vertical',
),
);
public function getParams() {
$values = array(
JHTML::_('select.option', 'vertical',
JText::_('VERTICAL')),
JHTML::_('select.option', 'horizontal',
JText::_('HORIZONTAL'))
);
$this->params['type']['values'] = $values;
return parent::getParams();
}
public function haveEmptyContent(&$controller, &$params) {
return true;
}
}