PluginProbe
Social Media Auto Poster – Schedule & Publish to Buffer / 6.2.5
Social Media Auto Poster – Schedule & Publish to Buffer v6.2.5
6.2.5 6.2.4 6.2.3 6.2.2 6.2.1 6.2.0 6.1.2 6.1.1 6.1.0 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 All 126 releases
wp-to-buffer / lib / shared / views / footer-upgrade-embedded.php

footer-upgrade-embedded.php in Social Media Auto Poster – Schedule & Publish to Buffer 6.2.5, at lib/shared/views/footer-upgrade-embedded.php

47 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Outputs the upgrade reasons to upgrade to a Pro product.
4 *
5 * @package WPZinc\Shared
6 * @author WP Zinc
7 */
8
9 // Exit if accessed directly.
10 if ( ! defined( 'ABSPATH' ) ) {
11 exit;
12 }
13
14 if ( isset( $this->base->plugin->upgrade_reasons ) && is_array( $this->base->plugin->upgrade_reasons ) && count( $this->base->plugin->upgrade_reasons ) > 0 ) {
15 foreach ( $this->base->plugin->upgrade_reasons as $reasons ) {
16 ?>
17 <div class="wpzinc-option ignore-nth-child">
18 <strong><?php echo esc_html( $reasons[0] ); ?>:</strong> <?php echo esc_html( $reasons[1] ); ?>
19 </div>
20 <?php
21 }
22 ?>
23
24 <div class="wpzinc-option ignore-nth-child">
25 <strong><?php esc_html_e( 'Support', 'wp-to-buffer' ); ?>:</strong> <?php esc_html_e( 'Access to one on one email support', 'wp-to-buffer' ); ?>
26 </div>
27
28 <div class="wpzinc-option ignore-nth-child">
29 <strong><?php esc_html_e( 'Documentation', 'wp-to-buffer' ); ?>:</strong> <?php esc_html_e( 'Detailed documentation on how to install and configure the plugin', 'wp-to-buffer' ); ?>
30 </div>
31
32 <div class="wpzinc-option ignore-nth-child">
33 <strong><?php esc_html_e( 'Updates', 'wp-to-buffer' ); ?>:</strong> <?php esc_html_e( 'Receive one click update notifications, right within your WordPress Adminstration panel', 'wp-to-buffer' ); ?>
34 </div>
35
36 <div class="wpzinc-option ignore-nth-child">
37 <strong><?php esc_html_e( 'Seamless Upgrade', 'wp-to-buffer' ); ?>:</strong> <?php esc_html_e( 'Retain all current settings when upgrading to Pro', 'wp-to-buffer' ); ?>
38 </div>
39
40 <div class="wpzinc-option">
41 <a href="<?php echo esc_url( $this->base->dashboard->get_upgrade_url( 'settings_footer_upgrade' ) ); ?>" class="button button-primary" rel="noopener" target="_blank">
42 <?php esc_html_e( 'Upgrade Now', 'wp-to-buffer' ); ?>
43 </a>
44 </div>
45 <?php
46 }
47