File: /home/confeduphaar/backip-old-files/plugins/vmpayment/amazon/fields/categories.php
<?php
defined('_JEXEC') or die();
/**
*
* @package VirtueMart
* @subpackage Plugins - Elements
* @author Valérie Isaksen
* @version $Id: categories.php 8229 2014-08-23 16:56:12Z alatak $
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - March 31 2017 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
*/
if (!class_exists('VmConfig')) {
require(VMPATH_ROOT . DS . 'administrator' . DS . 'components' . DS . 'com_virtuemart' . DS . 'helpers' . DS . 'config.php');
}
if (!class_exists('ShopFunctions')) {
require(VMPATH_ADMIN . DS . 'helpers' . DS . 'shopfunctions.php');
}
if (!class_exists('TableCategories')) {
require(VMPATH_ADMIN . DS . 'tables' . DS . 'categories.php');
}
jimport('joomla.form.formfield');
class JFormFieldcategories extends JFormFieldList {
var $type = 'categories';
var $class = '';
protected function getInput() {
//vmLanguage::loadJLang('com_virtuemart');
$categorylist = ShopFunctions::categoryListTree(array($this->value));
$html = '<select multiple="true" class="inputbox ' . $this->class . '" name="' . $this->name . '" >';
$html .= '<option value="0">' . vmText::_('COM_VIRTUEMART_NONE') . '</option>';
$html .= $categorylist;
$html .= "</select>";
return $html;
}
}