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