eHealth-Portal/admin/tmpl/health_education_topics/default_batch_footer.php

26 lines
826 B
PHP
Raw Permalink Normal View History

2021-04-24 04:42:47 +00:00
<?php
/**
* @package eHealth Portal
*
* @created 13th August, 2020
* @author Llewellyn van der Merwe <https://git.vdm.dev/joomla/eHealth-Portal>
* @copyright Copyright (C) 2020 Vast Development Method. All rights reserved.
* @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
*
* Portal for mobile health clinics
*/
2021-04-24 04:42:47 +00:00
// No direct access to this file
2024-01-19 14:48:27 +00:00
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
2021-04-24 04:42:47 +00:00
?>
<!-- clear the batch values if cancel -->
<button class="btn" type="button" onclick="" data-dismiss="modal">
2024-01-19 14:48:27 +00:00
<?php echo Text::_('JCANCEL'); ?>
2021-04-24 04:42:47 +00:00
</button>
<!-- post the batch values if process -->
<button class="btn btn-success" type="submit" onclick="Joomla.submitbutton('health_education_topic.batch');">
2024-01-19 14:48:27 +00:00
<?php echo Text::_('JGLOBAL_BATCH_PROCESS'); ?>
2021-04-24 04:42:47 +00:00
</button>