Файловый менеджер - Редактировать - /home/lmsyaran/public_html/administrator/components/com_helpdeskpro/libraries/form/field/file.php
Назад
<?php use Joomla\CMS\Language\Text; class HDPFormFieldFile extends HDPFormField { /** * The form field type. * * @var string * */ protected $type = 'File'; /** * 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, $fieldSuffix = null) { parent::__construct($row, $value, $fieldSuffix); if ($row->size) { $this->attributes['size'] = $row->size; } } /** * Method to get the field input markup. * * @return string The field input markup. * */ protected function getInput() { $attributes = $this->buildAttributes(); if ($this->value && file_exists(JPATH_ROOT.'/media/com_jdonation/files/'.$this->value)) { return '<input type="file" name="' . $this->name . '" id="' . $this->name . '" value=""' . $attributes. $this->extraAttributes. ' />. '.Text::_('JD_CURRENT_FILE').' <strong>'.$this->value.'</strong> <a href="index.php?option=com_jdonation&task=download_file&file_name='.$this->value.'">'.Text::_('JD_DOWNLOAD').'</a>'; } else { return '<input type="file" name="' . $this->name . '" id="' . $this->name . '" value=""' . $attributes. $this->extraAttributes. ' />'; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка