Файловый менеджер - Редактировать - /home/lmsyaran/public_html/administrator/components/com_helpdeskpro/libraries/form/field/text.php
Назад
<?php /** * Form Field class for the Joomla HDP. * Supports a text input. * * @package Joomla.HDP * @subpackage Form */ use OSSolution\HelpdeskPro\Site\Helper\Html as HelpdeskProHelperHtml; class HDPFormFieldText extends HDPFormField { /** * Field Type * * @var string */ protected $type = 'Text'; /** * 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 = null) { parent::__construct($row, $value); if ($row->place_holder) { $this->attributes['placeholder'] = $row->place_holder; } if ($row->max_length) { $this->attributes['maxlength'] = $row->max_length; } if ($row->size) { $this->attributes['size'] = $row->size; } } /** * Method to get the field input markup. * * @param HelpdeskProHelperBootstrap $bootstrapHelper * * @return string The field input markup. * */ protected function getInput($bootstrapHelper = null) { // Add uk-input to input elements if ($bootstrapHelper && $bootstrapHelper->getBootstrapVersion() === 'uikit3') { if ($this->type == 'Range') { $class = 'uk-range'; } else { $class = 'uk-input'; } $this->addClass($class); } if ($bootstrapHelper && $bootstrapHelper->getFrameworkClass('form-control')) { $this->addClass('form-control'); } $data = [ 'type' => strtolower($this->type), 'name' => $this->name, 'value' => $this->value, 'attributes' => $this->buildAttributes(), 'row' => $this->row, ]; return HelpdeskProHelperHtml::loadCommonLayout('fieldlayout/text.php', $data); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка