PluginProbe
UpdraftCentral Dashboard / trunk
UpdraftCentral Dashboard vtrunk
0.8.33 0.7.2 0.7.3 0.7.4 0.8.0 0.8.1 0.8.10 0.8.11 0.8.12 0.8.13 0.8.14 0.8.15 0.8.16 0.8.17 0.8.18 0.8.19 0.8.2 0.8.20 0.8.21 0.8.22 0.8.23 0.8.24 0.8.25 0.8.26 0.8.27 All 51 releases
updraftcentral / templates / dashboard / modal.php

modal.php in UpdraftCentral Dashboard trunk, at templates/dashboard/modal.php

24 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * This file is html of every modal box
4 */
5 ?>
6 <div id="updraftcentral_modal_dialog" class="modal" tabindex="-1" role="dialog">
7 <!-- The purpose of this extra div is to allow us to set up and remove event listeners at will, without needing to bother about accidentally removing ones from Bootstrap or jQuery on the modal itself. Listen to events on this next ID, not on the previous. -->
8 <div class="modal-dialog">
9 <div class="modal-content">
10 <div class="modal-header">
11 <button type="button" class="close" data-bs-dismiss="modal" aria-label="<?php esc_attr_e('Close', 'updraftcentral');?>"><span aria-hidden="true">&times;</span></button>
12 <h4 class="modal-title">UpdraftCentral</h4>
13 </div>
14 <div class="modal-body" id="updraftcentral_modal">
15 <!-- Content will be inserted here -->
16 </div>
17 <div class="modal-footer">
18 <button type="button" class="btn btn-secondary" data-bs-dismiss="modal"><?php esc_html_e('Close', 'updraftcentral');?></button>
19 <button type="button" class="btn btn-primary updraft_modal_button_goahead"><?php esc_html_e('Go', 'updraftcentral');?></button>
20 </div>
21 </div><!-- /.modal-content -->
22 </div><!-- /.modal-dialog -->
23 </div><!-- /.modal -->
24