PluginProbe
Sharing Image / 3.3
Sharing Image v3.3
3.10 trunk 2.0 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.17 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 3.0 3.1 3.2 3.3 All 29 releases
sharing-image / templates / premium.php

premium.php in Sharing Image 3.3, at templates/premium.php

103 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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( 'Template cloning.', 'sharing-image' ); ?>
38 </li>
39 <li>
40 <?php esc_html_e( 'Priority tech support.', 'sharing-image' ); ?>
41 </li>
42 <li>
43 <?php esc_html_e( 'Adding new functionality at your request.', 'sharing-image' ); ?>
44 </li>
45 </ul>
46
47 <p>
48 <?php esc_html_e( 'To get the Premium version, you need to receive the license on the official website of the plugin.', 'sharing-image' ); ?>
49 <?php esc_html_e( 'If you already have the key, activate it in the box below.', 'sharing-image' ); ?>
50 <?php esc_html_e( 'Each key can be used up to 5 times on different sites.', 'sharing-image' ); ?>
51 </p>
52
53 <p>
54 <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>
55 </p>
56 </div>
57
58 <div class="sharing-image-premium-gratitude">
59 <p>
60 <?php esc_html_e( 'You have successfully purchased Premium access to this plugin.', 'sharing-image' ); ?>
61 <?php esc_html_e( 'Now you can take advantage of all the features of the plugin and priority support.', 'sharing-image' ); ?>
62 </p>
63
64 <p>
65 <strong>
66 <?php esc_html_e( 'Thank you for your support!', 'sharing-image' ); ?>
67 </strong>
68 </p>
69 </div>
70
71 <div class="sharing-image-premium-contacts">
72 <p>
73 <?php esc_html_e( 'Contact us if you have any problems with access or want to discuss individual conditions.', 'sharing-image' ); ?>
74
75 <?php
76 printf(
77 // translators: Link to email.
78 esc_html__( 'On all questions write on e-mail address: %s.', 'sharing-image' ),
79 sprintf(
80 '<a href="mailto:%1$s">%1$s</a>',
81 esc_attr( 'support@wpset.org' )
82 )
83 );
84 ?>
85
86 <?php esc_html_e( 'Attach the access key, if you have one.', 'sharing-image' ); ?>
87 <?php esc_html_e( 'We will try to answer as soon as possible, but usually it takes no more than 3 days.', 'sharing-image' ); ?>
88
89 <?php
90 printf(
91 // translators: Link to website.
92 esc_html__( 'You can manage your licenses using a special %s.', 'sharing-image' ),
93 sprintf(
94 '<a href="%s" target="_blank" rel="noopener">%s</a>',
95 esc_attr( 'https://wpset.org/sharing-image/licenses/' ),
96 esc_html__( 'tool', 'sharing-image' )
97 )
98 );
99 ?>
100 </p>
101 </div>
102 </div>
103