footer-upgrade.php
1.67 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
<?php
/**
* Outputs the Upgrade section to upgrade to a Pro product.
*
* @package WPZincDashboardWidget
* @author WP Zinc
*/
if ( isset( $this->base->plugin->upgrade_reasons ) && is_array( $this->base->plugin->upgrade_reasons ) && count( $this->base->plugin->upgrade_reasons ) > 0 ) {
?>
<hr class="wpzinc-upgrade-hr" />
<div class="wpzinc-upgrade">
<h3>
<?php esc_html_e( 'Upgrade to Pro', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</h3>
<ul>
<?php
foreach ( $this->base->plugin->upgrade_reasons as $reasons ) {
?>
<li>
<strong><?php echo esc_html( $reasons[0] ); ?></strong>
<?php echo esc_html( $reasons[1] ); ?>
</li>
<?php
}
?>
<li>
<strong><?php esc_html_e( 'Support, Documentation and Updates', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?></strong>
<?php esc_html_e( 'Access to one on one email support, plus detailed documentation on how to install and configure the plugin and one click update notifications, right within the WordPress Administration panel.', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</li>
</ul>
<a href="<?php echo esc_url( $this->base->dashboard->get_upgrade_url( 'settings_footer_upgrade' ) ); ?>" class="button button-primary button-large" target="_blank"><?php esc_html_e( 'Upgrade Now', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?></a>
<a href="<?php echo esc_url( $this->base->dashboard->get_upgrade_url( 'settings_footer_upgrade' ) ); ?>" class="button button-large" target="_blank"><?php esc_html_e( 'See all Features', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?></a>
</div>
<?php
}