30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-03 06:50:49 +00:00
weblinks/src/administrator/components/com_weblinks/tmpl/weblinks/default_batch_body.php

53 lines
1.5 KiB
PHP
Raw Normal View History

2018-02-12 22:57:58 +00:00
<?php
2023-05-18 16:45:59 +00:00
2018-02-12 22:57:58 +00:00
/**
* @package Joomla.Administrator
* @subpackage com_weblinks
*
* @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
2021-06-19 14:17:09 +00:00
2023-05-18 16:45:59 +00:00
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
2021-07-22 21:18:49 +00:00
use Joomla\CMS\Language\Multilanguage;
2021-06-19 14:17:09 +00:00
use Joomla\CMS\Layout\LayoutHelper;
2018-02-12 22:57:58 +00:00
$published = $this->state->get('filter.published');
?>
2021-07-22 20:00:20 +00:00
<div class="p-3">
2023-05-18 16:45:59 +00:00
<div class="row">
<?php if (Multilanguage::isEnabled()) :
?>
<div class="form-group col-md-6">
<div class="controls">
<?php echo LayoutHelper::render('joomla.html.batch.language', []); ?>
</div>
</div>
<?php
endif; ?>
<div class="form-group col-md-6">
<div class="controls">
<?php echo LayoutHelper::render('joomla.html.batch.access', []); ?>
</div>
</div>
</div>
<div class="row">
<?php if ($published >= 0) :
?>
<div class="form-group col-md-6">
<div class="controls">
<?php echo LayoutHelper::render('joomla.html.batch.item', ['extension' => 'com_weblinks']); ?>
</div>
</div>
<?php
endif; ?>
<div class="form-group col-md-6">
<div class="controls">
<?php echo LayoutHelper::render('joomla.html.batch.tag', []); ?>
</div>
</div>
</div>
2018-02-12 22:57:58 +00:00
</div>