Your IP : 216.73.216.209


Current Path : /home/megadansyp/www/administrator/components/com_jevents/fields/
Upload File :
Current File : /home/megadansyp/www/administrator/components/com_jevents/fields/jeveventprimarycategory.php

<?php

defined('JPATH_BASE') or die;

use Joomla\CMS\Language\Text;
use Joomla\CMS\Form\FormField;
use Joomla\CMS\HTML\HTMLHelper;

jimport('joomla.html.html');
jimport('joomla.form.formfield');

class FormFieldJeveventprimarycategory extends FormField
{
	/**
	 * The form field type.
	 *
	 * @var        string
	 * @since    1.6
	 */
	protected $type = 'Jeveventprimarycategory';

	/**
	 * Method to get the field input markup.
	 *
	 * @return    string    The field input markup.
	 * @since    1.6
	 */
	protected function getInput()
	{

		$cfg = JEVConfig::getInstance();
		if ($cfg->get("multicategory", 0))
		{
			$catids = $this->form->getValue("catid", array());
			if (!is_array($catids))
			{
				$catids = array($catids);
			}
			$primarycatid     = $this->value;
			$options          = array();
			$options[]        = HTMLHelper::_('select.option', '0', Text::_("JEV_SELECT_PRIMARY_CATEGORY"));
			$allcategories    = HTMLHelper::_('category.categories', "com_jevents");
			$sortedcategories = array();
			foreach ($allcategories as $cat)
			{
				$sortedcategories[$cat->value] = $cat->text;
			}
			foreach ($catids as $cat)
			{
				if (isset($sortedcategories[$cat]))
				{
					$options[] = HTMLHelper::_('select.option', $cat, $sortedcategories[$cat]);
				}
			}
			$input = HTMLHelper::_('select.genericlist', $options, $this->name, "", 'value', 'text', $primarycatid);

			return $input;
		}
		else
		{
			$input = "";
		}

		return $input;
	}

	protected function getLabel()
	{

		$cfg = JEVConfig::getInstance();
		if ($cfg->get("multicategory", 0))
		{
			return parent::getLabel();
		}

		return "";
	}

}
class_alias("FormFieldJeveventprimarycategory", "JFormFieldJeveventprimarycategory");