PluginProbe
Social Media Auto Poster – Schedule & Publish to Buffer / trunk
Social Media Auto Poster – Schedule & Publish to Buffer vtrunk
6.2.4 6.2.3 6.2.2 6.2.1 6.2.0 6.1.2 6.1.1 6.1.0 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 All 125 releases
wp-to-buffer / lib / shared / views / modal.php

modal.php in Social Media Auto Poster – Schedule & Publish to Buffer trunk, at lib/shared/views/modal.php

32 lines 670 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Modal window view.
4 *
5 * @package WPZinc\Shared
6 * @author WP Zinc
7 */
8
9 // Exit if accessed directly.
10 if ( ! defined( 'ABSPATH' ) ) {
11 exit;
12 }
13
14 ?>
15 <!-- JS Overlay -->
16 <div id="<?php echo esc_attr( $this->base->plugin->name ); ?>-modal-overlay" class="wpzinc-modal-overlay"></div>
17 <div id="<?php echo esc_attr( $this->base->plugin->name ); ?>-modal" class="wpzinc-modal">
18 <h2 class="title">
19 <span class="text">Saving</span>
20 <div class="spinner"></div>
21 <div class="tick">
22 <span class="dashicons dashicons-yes-alt"></span>
23 </div>
24 </h2>
25
26 <div class="notices"></div>
27
28 <p class="message"></p>
29
30 <button class="close button">Close</button>
31 </div>
32