PluginProbe
MailPoet – Newsletters, Email Marketing, and Automation / 5.3.4
MailPoet – Newsletters, Email Marketing, and Automation v5.3.4
5.38.0 5.37.0 5.36.1 5.36.0 5.35.1 5.35.0 5.34.3 5.34.2 5.34.1 5.34.0 5.33.1 5.33.0 5.32.0 5.31.0 5.30.0 5.29.0 5.28.1 5.28.0 5.27.0 5.26.0 5.26.1 5.25.0 5.24.0 4.43.0 4.43.1 All 542 releases
mailpoet / lib / Form / PreviewWidget.php

PreviewWidget.php in MailPoet – Newsletters, Email Marketing, and Automation 5.3.4, at lib/Form/PreviewWidget.php

33 lines 662 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
2
3 namespace MailPoet\Form;
4
5 if (!defined('ABSPATH')) exit;
6
7
8 class PreviewWidget extends \WP_Widget {
9
10 /** @var string */
11 private $formHtml;
12
13 public function __construct(
14 $formHtml
15 ) {
16 $this->formHtml = $formHtml;
17 parent::__construct(
18 'mailpoet_form_preview',
19 'Dummy form form preview',
20 []
21 );
22 }
23
24 /**
25 * Output the widget itself.
26 */
27 public function widget($args, $instance = null) {
28 // We control the html
29 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
30 echo $this->formHtml;
31 }
32 }
33