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_footer.php

23 lines
712 B
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
*/
2023-05-18 16:45:59 +00:00
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
use Joomla\CMS\Language\Text;
2021-07-30 06:05:35 +00:00
2018-02-12 22:57:58 +00:00
?>
2021-07-22 20:00:20 +00:00
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
2023-05-18 16:45:59 +00:00
<?php echo Text::_('JCANCEL'); ?>
2021-07-22 20:00:20 +00:00
</button>
2021-07-30 06:05:35 +00:00
<button type="submit" id='batch-submit-button-id' class="btn btn-success" onclick="Joomla.submitbutton('weblink.batch');return false;">
2023-05-18 16:45:59 +00:00
<?php echo Text::_('JGLOBAL_BATCH_PROCESS'); ?>
2021-07-22 20:00:20 +00:00
</button>