Файловый менеджер - Редактировать - /home/lmsyaran/public_html/administrator/components/com_helpdeskpro/libraries/form/field/state.php
Назад
<?php /** * Supports a custom field which display list of countries * * @package Joomla.HDP * @subpackage Form */ use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; class HDPFormFieldState extends HDPFormFieldList { /** * The form field type. * * @var string */ public $type = 'State'; /** * ID of the country used to build the zone * * @var int */ protected $countryId = null; /** * Method to instantiate the form field object. * * @param JTable $row the table object store form field definitions * @param mixed $value the initial value of the form field * */ public function __construct($row, $value) { parent::__construct($row, $value); } /** * Set ID of the country used to generate the zones list * * @param int $countryId */ public function setCountryId($countryId) { $this->countryId = (int) $countryId; } /** * Method to get the custom field options. * Use the query attribute to supply a query to generate the list. * * @return array The field option objects. * */ protected function getOptions() { $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select('state_2_code AS `value`, state_name AS `text`') ->from('#__jd_states') ->where('country_id=' . (int) $this->countryId) ->order('state_name'); $db->setQuery($query); $options = array(); $options[] = HTMLHelper::_('select.option', '', Text::_('JD_SELECT_STATE')); $options = array_merge($options, $db->loadObjectList()); return $options; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка