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.php

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

44 lines 1.5 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 section 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 ?>
16 <hr class="wpzinc-upgrade-hr" />
17 <div class="wpzinc-upgrade">
18 <h3>
19 <?php esc_html_e( 'Upgrade to Pro', 'wp-to-buffer' ); ?>
20 </h3>
21
22 <ul>
23 <?php
24 foreach ( $this->base->plugin->upgrade_reasons as $reasons ) {
25 ?>
26 <li>
27 <strong><?php echo esc_html( $reasons[0] ); ?></strong>
28 <?php echo esc_html( $reasons[1] ); ?>
29 </li>
30 <?php
31 }
32 ?>
33 <li>
34 <strong><?php esc_html_e( 'Support, Documentation and Updates', 'wp-to-buffer' ); ?></strong>
35 <?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.', 'wp-to-buffer' ); ?>
36 </li>
37 </ul>
38
39 <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', 'wp-to-buffer' ); ?></a>
40 <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', 'wp-to-buffer' ); ?></a>
41 </div>
42 <?php
43 }
44