/administrator/components/com_easysocial/themes/default/groups/dialog.delete.group.php
https://gitlab.com/vnsoftdev/swc · PHP · 40 lines · 29 code · 1 blank · 10 comment · 0 complexity · 96b57457e19141d3c9b308b0af01b8f3 MD5 · raw file
- <?php
- /**
- * @package EasySocial
- * @copyright Copyright (C) 2010 - 2014 Stack Ideas Sdn Bhd. All rights reserved.
- * @license GNU/GPL, see LICENSE.php
- * EasySocial is free software. This version may have been modified pursuant
- * to the GNU General Public License, and as distributed it includes or
- * is derivative of works licensed under the GNU General Public License or
- * other free or open source software licenses.
- * See COPYRIGHT.php for copyright notices and details.
- */
- defined( '_JEXEC' ) or die( 'Unauthorized Access' );
- ?>
- <dialog>
- <width>450</width>
- <height>150</height>
- <selectors type="json">
- {
- "{deleteButton}" : "[data-delete-button]",
- "{cancelButton}" : "[data-cancel-button]"
- }
- </selectors>
- <bindings type="javascript">
- {
- "{cancelButton} click" : function()
- {
- this.parent.close();
- }
- }
- </bindings>
- <title><?php echo JText::_( 'COM_EASYSOCIAL_GROUPS_DELETE_DIALOG_TITLE' ); ?></title>
- <content>
- <p><?php echo JText::_( 'COM_EASYSOCIAL_GROUPS_DELETE_DIALOG_CONFIRMATION' ); ?></p>
- </content>
- <buttons>
- <button data-cancel-button type="button" class="btn btn-es btn-sm"><?php echo JText::_( 'COM_EASYSOCIAL_CANCEL_BUTTON' ); ?></button>
- <button data-delete-button type="button" class="btn btn-es-danger btn-sm"><?php echo JText::_( 'COM_EASYSOCIAL_DELETE_BUTTON' ); ?></button>
- </buttons>
- </dialog>