# wp-to-buffer/6.2.5/lib/shared/views/modal.php

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

- Page: https://pluginprobe.com/plugins/wp-to-buffer/6.2.5/code/lib/shared/views/modal.php
- Raw: https://pluginprobe.com/plugins/wp-to-buffer/6.2.5/raw/lib/shared/views/modal.php
- Modified: 2026-08-19T11:19:16+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.2.5/code/lib/shared/views/modal.php#L10-L20`.

```php
<?php
/**
 * Modal window view.
 *
 * @package WPZinc\Shared
 * @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>

```
