| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs an upgrade notice for each profile, when the Free version of the Plugin is used. |
| 4 |
* |
| 5 |
* @package WPZinc\Social |
| 6 |
* @author WP Zinc |
| 7 |
*/ |
| 8 |
|
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit; // Exit if accessed directly. |
| 11 |
} |
| 12 |
?> |
| 13 |
<div class="wpzinc-option highlight"> |
| 14 |
<div class="full"> |
| 15 |
<h4><?php esc_html_e( 'Want to define different Status for each Social Media Account?', 'wp-to-buffer' ); ?></h4> |
| 16 |
|
| 17 |
<p> |
| 18 |
<?php |
| 19 |
echo esc_html( |
| 20 |
sprintf( |
| 21 |
/* translators: Plugin Name */ |
| 22 |
__( '%s Pro allows you to define different statuses for each Social Media Account, with advanced controls for conditional publishing, tags and scheduling.', 'wp-to-buffer' ), |
| 23 |
$this->base->plugin->displayName |
| 24 |
) |
| 25 |
); |
| 26 |
?> |
| 27 |
</p> |
| 28 |
|
| 29 |
<a href="<?php echo esc_attr( $this->base->dashboard->get_upgrade_url( 'settings_inline_upgrade' ) ); ?>" class="button button-primary" target="_blank"><?php esc_html_e( 'Upgrade', 'wp-to-buffer' ); ?></a> |
| 30 |
</div> |
| 31 |
</div> |
| 32 |
|