sidebar-upgrade.php
1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* Outputs settings screen sidebar for free plugins with a pro version.
* Display the reasons to upgrade and the mailing list.
*
* @package WPZincDashboardWidget
* @author WP Zinc
*/
/**
* Settings screen sidebar for free plugins with a pro version. Display the reasons to upgrade
* and the mailing list.
*/
?>
<!-- Keep Updated -->
<div class="postbox">
<h3 class="hndle">
<?php esc_html_e( 'Keep Updated', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</h3>
<div class="wpzinc-option">
<p class="description">
<?php esc_html_e( 'Subscribe to the newsletter and receive updates on our WordPress Plugins.', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</p>
</div>
<form action="https://n7studios.createsend.com/t/r/s/jdutdyj/" method="post">
<div class="wpzinc-option">
<div class="full">
<input id="fieldEmail" name="cm-jdutdyj-jdutdyj" type="email" class="widefat" placeholder="<?php esc_attr_e( 'Your Email Address', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>" class="widefat" required />
</div>
</div>
<div class="wpzinc-option">
<div class="full">
<input type="submit" name="submit" value="<?php esc_attr_e( 'Subscribe', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>" class="button button-primary" />
</div>
</div>
</form>
</div>