/administrator/components/com_easysocial/themes/default/badges/dialog.delete.php
https://gitlab.com/vnsoftdev/swc · PHP · 38 lines · 28 code · 0 blank · 10 comment · 0 complexity · 38d217b99acc021fc968adc5960c3080 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>400</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_ALBUMS_DELETE_BADGE_DIALOG_TITLE'); ?></title>
- <content>
- <p><?php echo JText::_('COM_EASYSOCIAL_ALBUMS_DELETE_BADGE_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_BADGES_BUTTON'); ?></button>
- </buttons>
- </dialog>