first commit
This commit is contained in:
29
layouts/joomla/html/batch/access.php
Normal file
29
layouts/joomla/html/batch/access.php
Normal 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'
|
||||
]
|
||||
);
|
||||
Reference in New Issue
Block a user