| 1 |
<?php |
| 2 |
/** |
| 3 |
* Sharing Image premim settings tab. |
| 4 |
* |
| 5 |
* @package sharing-image |
| 6 |
* @author Anton Lukin |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace Sharing_Image; |
| 10 |
|
| 11 |
if ( ! defined( 'ABSPATH' ) ) { |
| 12 |
die; |
| 13 |
} |
| 14 |
|
| 15 |
?> |
| 16 |
|
| 17 |
<div class="sharing-image-premium"> |
| 18 |
<h2><?php esc_html_e( 'Sharing Image Premium', 'sharing-image' ); ?></h2> |
| 19 |
|
| 20 |
<div class="sharing-image-premium-benefits"> |
| 21 |
<p> |
| 22 |
<?php esc_html_e( 'The Premium version of the plugin adds new features and helps the product develop.', 'sharing-image' ); ?> |
| 23 |
</p> |
| 24 |
|
| 25 |
<p> |
| 26 |
<strong><?php esc_html_e( 'For this it is worth getting a Premium:', 'sharing-image' ); ?></strong> |
| 27 |
</p> |
| 28 |
|
| 29 |
<ul> |
| 30 |
<li> |
| 31 |
<?php esc_html_e( 'Use of several templates with the ability to quickly switch between them when generating.', 'sharing-image' ); ?> |
| 32 |
</li> |
| 33 |
<li> |
| 34 |
<?php esc_html_e( 'Generating posters in taxonomy archives.', 'sharing-image' ); ?> |
| 35 |
</li> |
| 36 |
<li> |
| 37 |
<?php esc_html_e( 'Priority tech support.', 'sharing-image' ); ?> |
| 38 |
</li> |
| 39 |
<li> |
| 40 |
<?php esc_html_e( 'Adding new functionality at your request.', 'sharing-image' ); ?> |
| 41 |
</li> |
| 42 |
</ul> |
| 43 |
|
| 44 |
<p> |
| 45 |
<?php esc_html_e( 'To get the Premium version, you need to receive the license on the official website of the plugin.', 'sharing-image' ); ?> |
| 46 |
<?php esc_html_e( 'If you already have the key, activate it in the box below.', 'sharing-image' ); ?> |
| 47 |
<?php esc_html_e( 'Each key can be used up to 5 times on different sites.', 'sharing-image' ); ?> |
| 48 |
</p> |
| 49 |
|
| 50 |
<p> |
| 51 |
<a class="button button-primary" href="https://wpset.org/sharing-image/#premium" target="_blank" rel="noopener"><?php esc_html_e( 'Get Premium', 'sharing-image' ); ?></a> |
| 52 |
</p> |
| 53 |
</div> |
| 54 |
|
| 55 |
<div class="sharing-image-premium-gratitude"> |
| 56 |
<p> |
| 57 |
<?php esc_html_e( 'You have successfully purchased Premium access to this plugin.', 'sharing-image' ); ?> |
| 58 |
<?php esc_html_e( 'Now you can take advantage of all the features of the plugin and priority support.', 'sharing-image' ); ?> |
| 59 |
</p> |
| 60 |
|
| 61 |
<p> |
| 62 |
<strong> |
| 63 |
<?php esc_html_e( 'Thank you for your support!', 'sharing-image' ); ?> |
| 64 |
</strong> |
| 65 |
</p> |
| 66 |
</div> |
| 67 |
|
| 68 |
<div class="sharing-image-premium-contacts"> |
| 69 |
<p> |
| 70 |
<?php esc_html_e( 'Contact us if you have any problems with access or want to discuss individual conditions.', 'sharing-image' ); ?> |
| 71 |
|
| 72 |
<?php |
| 73 |
printf( |
| 74 |
// translators: Link to email. |
| 75 |
esc_html__( 'On all questions write on e-mail address: %s.', 'sharing-image' ), |
| 76 |
sprintf( |
| 77 |
'<a href="mailto:%1$s">%1$s</a>', |
| 78 |
esc_attr( 'support@wpset.org' ) |
| 79 |
), |
| 80 |
); |
| 81 |
?> |
| 82 |
|
| 83 |
<?php esc_html_e( 'Attach the access key, if you have one.', 'sharing-image' ); ?> |
| 84 |
<?php esc_html_e( 'We will try to answer as soon as possible, but usually it takes no more than 3 days.', 'sharing-image' ); ?> |
| 85 |
|
| 86 |
<?php |
| 87 |
printf( |
| 88 |
// translators: Link to website. |
| 89 |
esc_html__( 'You can manage your licenses using a special %s.', 'sharing-image' ), |
| 90 |
sprintf( |
| 91 |
'<a href="%s" target="_blank" rel="noopener">%s</a>', |
| 92 |
esc_attr( 'https://wpset.org/sharing-image/licenses/' ), |
| 93 |
esc_html__( 'tool', 'sharing-image' ) |
| 94 |
), |
| 95 |
); |
| 96 |
?> |
| 97 |
</p> |
| 98 |
</div> |
| 99 |
</div> |
| 100 |
|