PluginProbe
WowOptin: Next-Gen Popup Maker – Create Stunning Popups and Optins for Lead Generation / trunk
WowOptin: Next-Gen Popup Maker – Create Stunning Popups and Optins for Lead Generation vtrunk
1.4.48 1.4.47 1.4.46 1.4.45 1.4.44 1.4.43 1.4.42 1.4.41 1.4.40 1.4.39 1.4.38 1.4.37 1.4.36 1.1.2 1.2.0 1.2.1 1.2.2 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 All 64 releases
optin / includes / abstracts / class-block.php

class-block.php in WowOptin: Next-Gen Popup Maker – Create Stunning Popups and Optins for Lead Generation trunk, at includes/abstracts/class-block.php

27 lines 432 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // phpcs:ignore
2
3 namespace OPTN\Includes\Abstracts;
4
5 defined( 'ABSPATH' ) || exit;
6
7 /**
8 * Block Interface
9 */
10 interface Block {
11
12 /**
13 * Block constructor.
14 *
15 * @param object $data block data.
16 * @param object|null $post_data post data.
17 */
18 public function __construct( $data, $post_data = null );
19
20 /**
21 * Generate block html
22 *
23 * @return string
24 */
25 public function generate();
26 }
27