PluginProbe
Sharing Image / trunk
Sharing Image vtrunk
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 / tools.php

tools.php in Sharing Image trunk, at templates/tools.php

28 lines 670 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Sharing Image tools 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-tools">
18 <h2><?php esc_html_e( 'Tools', 'sharing-image' ); ?></h2>
19
20 <div class="sharing-image-tools-description">
21 <p>
22 <?php esc_html_e( 'Use this tools page to import and export templates.', 'sharing-image' ); ?>
23 <?php esc_html_e( 'Please note that importing new templates does not delete existing ones.', 'sharing-image' ); ?>
24 <?php esc_html_e( 'You can also clone the template to reuse it with new settings.', 'sharing-image' ); ?>
25 </p>
26 </div>
27 </div>
28