# wp-to-buffer/6.0.3/_modules/dashboard/views/modal.php

Social Media Auto Poster – Schedule &amp; Publish to Buffer, version 6.0.3. 32 lines.

- Page: https://pluginprobe.com/plugins/wp-to-buffer/6.0.3/code/_modules/dashboard/views/modal.php
- Raw: https://pluginprobe.com/plugins/wp-to-buffer/6.0.3/raw/_modules/dashboard/views/modal.php
- Modified: 2025-03-27T07:23:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-to-buffer/6.0.3/code/_modules/dashboard/views/modal.php#L10-L20`.

```php
<?php
/**
 * Modal window view.
 *
 * @package WPZincDashboardWidget
 * @author WP Zinc
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<!-- JS Overlay -->
<div id="<?php echo esc_attr( $this->base->plugin->name ); ?>-modal-overlay" class="wpzinc-modal-overlay"></div>
<div id="<?php echo esc_attr( $this->base->plugin->name ); ?>-modal" class="wpzinc-modal">
	<h2 class="title">
		<span class="text">Saving</span>
		<div class="spinner"></div>
		<div class="tick">
			<span class="dashicons dashicons-yes-alt"></span>
		</div>		
	</h2>

	<div class="notices"></div>

	<p class="message"></p>

	<button class="close button">Close</button>
</div>

```
