Файловый менеджер - Редактировать - /home/lmsyaran/public_html/khademsharif/batch.tar
Назад
language.php 0000644 00000001351 15117142527 0007045 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; ?> <label id="batch-language-lbl" for="batch-language-id"> <?php echo Text::_('JLIB_HTML_BATCH_LANGUAGE_LABEL'); ?> </label> <select name="batch[language_id]" class="form-select" id="batch-language-id"> <option value=""><?php echo Text::_('JLIB_HTML_BATCH_LANGUAGE_NOCHANGE'); ?></option> <?php echo HTMLHelper::_('select.options', HTMLHelper::_('contentlanguage.existing', true, true), 'value', 'text'); ?> </select> user.php 0000644 00000001732 15117142530 0006235 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; extract($displayData); /** * Layout variables * ----------------- * @var boolean $noUser Inject an option for no user? */ $optionNo = ''; if ($noUser) { $optionNo = '<option value="0">' . Text::_('JLIB_HTML_BATCH_USER_NOUSER') . '</option>'; } ?> <label id="batch-user-lbl" for="batch-user-id"> <?php echo Text::_('JLIB_HTML_BATCH_USER_LABEL'); ?> </label> <select name="batch[user_id]" class="form-select" id="batch-user-id"> <option value=""><?php echo Text::_('JLIB_HTML_BATCH_USER_NOCHANGE'); ?></option> <?php echo $optionNo; ?> <?php echo HTMLHelper::_('select.options', HTMLHelper::_('user.userlist'), 'value', 'text'); ?> </select> item.php 0000644 00000003465 15117142530 0006222 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; extract($displayData); /** * Layout variables * ----------------- * @var string $extension The extension name */ // Create the copy/move options. $options = [ HTMLHelper::_('select.option', 'c', Text::_('JLIB_HTML_BATCH_COPY')), HTMLHelper::_('select.option', 'm', Text::_('JLIB_HTML_BATCH_MOVE')) ]; /** @var Joomla\CMS\WebAsset\WebAssetManager $wa */ $wa = Factory::getApplication()->getDocument()->getWebAssetManager(); $wa->useScript('joomla.batch-copymove'); ?> <label id="batch-choose-action-lbl" for="batch-category-id"> <?php echo Text::_('JLIB_HTML_BATCH_MENU_LABEL'); ?> </label> <div id="batch-choose-action" class="control-group"> <select name="batch[category_id]" class="form-select" id="batch-category-id"> <option value=""><?php echo Text::_('JLIB_HTML_BATCH_NO_CATEGORY'); ?></option> <?php if (isset($addRoot) && $addRoot) : ?> <?php echo HTMLHelper::_('select.options', HTMLHelper::_('category.categories', $extension)); ?> <?php else : ?> <?php echo HTMLHelper::_('select.options', HTMLHelper::_('category.options', $extension)); ?> <?php endif; ?> </select> </div> <div id="batch-copy-move" class="control-group radio"> <fieldset id="batch-copy-move-id"> <legend> <?php echo Text::_('JLIB_HTML_BATCH_MOVE_QUESTION'); ?> </legend> <?php echo HTMLHelper::_('select.radiolist', $options, 'batch[move_copy]', '', 'value', 'text', 'm'); ?> </fieldset> </div> access.php 0000644 00000001272 15117142530 0006517 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; ?> <label id="batch-access-lbl" for="batch-access"> <?php echo Text::_('JLIB_HTML_BATCH_ACCESS_LABEL'); ?> </label> <?php echo HTMLHelper::_( 'access.assetgrouplist', 'batch[assetgroup_id]', '', 'class="form-select"', [ 'title' => Text::_('JLIB_HTML_BATCH_NOCHANGE'), 'id' => 'batch-access' ] ); workflowstage.php 0000644 00000001515 15117142530 0010154 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; ?> <label id="batch-workflowstage-lbl" for="batch-workflowstage-id"> <?php echo Text::_('JLIB_HTML_BATCH_WORKFLOW_STAGE_LABEL'); ?> </label> <?php $attr = [ 'id' => 'batch-workflowstage-id', 'group.label' => 'text', 'group.items' => null, 'list.attr' => [ 'class' => 'form-select' ] ]; $groups = HTMLHelper::_('workflowstage.existing', ['title' => Text::_('JLIB_HTML_BATCH_WORKFLOW_STAGE_NOCHANGE')]); echo HTMLHelper::_('select.groupedlist', $groups, 'batch[workflowstage_id]', $attr); adminlanguage.php 0000644 00000001347 15117142530 0010055 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; ?> <label id="batch-language-lbl" for="batch-language-id"> <?php echo Text::_('JLIB_HTML_BATCH_LANGUAGE_LABEL'); ?> </label> <select name="batch[language_id]" class="form-select" id="batch-language-id"> <option value=""><?php echo Text::_('JLIB_HTML_BATCH_LANGUAGE_NOCHANGE'); ?></option> <?php echo HTMLHelper::_('select.options', HTMLHelper::_('adminlanguage.existing', true, true), 'value', 'text'); ?> </select> tag.php 0000644 00000001311 15117142530 0006023 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; ?> <label id="batch-tag-lbl" for="batch-tag-id"> <?php echo Text::_('JLIB_HTML_BATCH_TAG_LABEL'); ?> </label> <select name="batch[tag]" class="form-select" id="batch-tag-id"> <option value=""><?php echo Text::_('JLIB_HTML_BATCH_TAG_NOCHANGE'); ?></option> <?php echo HTMLHelper::_('select.options', HTMLHelper::_('tag.tags', ['filter.published' => [1]]), 'value', 'text'); ?> </select>
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.04 |
proxy
|
phpinfo
|
Настройка