first commit

This commit is contained in:
2025-06-17 11:53:18 +02:00
commit 9f0f7ba12b
8804 changed files with 1369176 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<?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'
]
);