2018-07-11 00:35:10 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2018-07-25 03:00:13 +00:00
|
|
|
* @package Joomla.Members.Manager
|
2018-07-11 00:35:10 +00:00
|
|
|
*
|
|
|
|
* @created 6th September, 2015
|
|
|
|
* @author Llewellyn van der Merwe <https://www.joomlacomponentbuilder.com/>
|
2018-07-25 03:00:13 +00:00
|
|
|
* @github Joomla Members Manager <https://github.com/vdm-io/Joomla-Members-Manager>
|
2018-07-11 00:35:10 +00:00
|
|
|
* @copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
* @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
?>
|
|
|
|
<!-- clear the batch values if cancel -->
|
|
|
|
<button class="btn" type="button" onclick="" data-dismiss="modal">
|
|
|
|
<?php echo JText::_('JCANCEL'); ?>
|
|
|
|
</button>
|
|
|
|
<!-- post the batch values if process -->
|
|
|
|
<button class="btn btn-success" type="submit" onclick="Joomla.submitbutton('member.batch');">
|
|
|
|
<?php echo JText::_('JGLOBAL_BATCH_PROCESS'); ?>
|
|
|
|
</button>
|