footer-upgrade-embedded.php
2.09 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
40
41
<?php
/**
* Outputs the upgrade reasons 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 ) {
foreach ( $this->base->plugin->upgrade_reasons as $reasons ) {
?>
<div class="wpzinc-option ignore-nth-child">
<strong><?php echo esc_html( $reasons[0] ); ?>:</strong> <?php echo esc_html( $reasons[1] ); ?>
</div>
<?php
}
?>
<div class="wpzinc-option ignore-nth-child">
<strong><?php esc_html_e( 'Support', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>:</strong> <?php esc_html_e( 'Access to one on one email support', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</div>
<div class="wpzinc-option ignore-nth-child">
<strong><?php esc_html_e( 'Documentation', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>:</strong> <?php esc_html_e( 'Detailed documentation on how to install and configure the plugin', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</div>
<div class="wpzinc-option ignore-nth-child">
<strong><?php esc_html_e( 'Updates', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>:</strong> <?php esc_html_e( 'Receive one click update notifications, right within your WordPress Adminstration panel', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</div>
<div class="wpzinc-option ignore-nth-child">
<strong><?php esc_html_e( 'Seamless Upgrade', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>:</strong> <?php esc_html_e( 'Retain all current settings when upgrading to Pro', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</div>
<div class="wpzinc-option">
<a href="<?php echo esc_url( $this->base->dashboard->get_upgrade_url( 'settings_footer_upgrade' ) ); ?>" class="button button-primary" rel="noopener" target="_blank">
<?php esc_html_e( 'Upgrade Now', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
</a>
</div>
<?php
}