Файловый менеджер - Редактировать - /home/lmsyaran/public_html/joomla5/administrator/components/com_fabrik/models/fields/fabrikfolderlist.php
Назад
<?php /** * Get a list of templates - either in components/com_fabrik/views/{view}/tmpl or {view}/tmpl25 * * @package Joomla * @subpackage Form * @copyright Copyright (C) 2005-2020 Media A-Team, Inc. - All rights reserved. * @license GNU/GPL http://www.gnu.org/copyleft/gpl.html */ // No direct access defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Language\Text; use Joomla\CMS\Form\FormHelper; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Filesystem\Path; use Joomla\CMS\Filesystem\Folder; use Joomla\CMS\Form\Field\FolderlistField; jimport('joomla.html.html'); jimport('joomla.form.formfield'); jimport('joomla.form.helper'); FormHelper::loadFieldClass('folderlist'); /** * Get a list of templates - either in components/com_fabrik/views/{view}/tmpl or {view}/tmpl25 * * @package Joomla * @subpackage Form * @since 3.1b */ class JFormFieldFabrikFolderlist extends FolderlistField { /** * The form field type. * * @var string * @since 1.6 */ public $type = 'FabrikFolderlist'; /** * Method to get the field options. * * @return array The field option objects. */ protected function getOptions() { $path = JPATH_ROOT . DIRECTORY_SEPARATOR . $this->element['directory']; $path = str_replace('\\', '/', $path); $path = str_replace('//', '/', $path); $this->element['directory'] = $this->directory = $path; $options = array(); $path = Path::clean($path); // Prepend some default options based on field attributes. if (!$this->hideNone) { $options[] = HTMLHelper::_('select.option', '-1', Text::alt('JOPTION_DO_NOT_USE', preg_replace('/[^a-zA-Z0-9_\-]/', '_', $this->fieldname))); } if (!$this->hideDefault) { $options[] = HTMLHelper::_('select.option', '', Text::alt('JOPTION_USE_DEFAULT', preg_replace('/[^a-zA-Z0-9_\-]/', '_', $this->fieldname))); } // Get a list of folders in the search path with the given filter. $folders = Folder::folders($path, $this->filter, $this->recursive, true); // Build the options list from the list of folders. if (is_array($folders)) { foreach ($folders as $folder) { // Check to see if the file is in the exclude mask. if ($this->exclude) { if (preg_match(chr(1) . $this->exclude . chr(1), $folder)) { continue; } } // Remove the root part and the leading / $folder = trim(str_replace($path, '', $folder), '/'); $options[] = HTMLHelper::_('select.option', $folder, $folder); } } foreach ($options as &$opt) { $opt->value = str_replace('\\', '/', $opt->value); $opt->value = str_replace('//', '/', $opt->value); $opt->value = str_replace($path, '', $opt->value); $opt->text = str_replace('\\', '/', $opt->text); $opt->text = str_replace('//', '/', $opt->text); $opt->text = str_replace($path, '', $opt->text); } return $options; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка