# sharing-image/3.3/templates/tools.php

Sharing Image, version 3.3. 28 lines.

- Page: https://pluginprobe.com/plugins/sharing-image/3.3/code/templates/tools.php
- Raw: https://pluginprobe.com/plugins/sharing-image/3.3/raw/templates/tools.php
- Modified: 2024-06-26T16:46:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sharing-image/3.3/code/templates/tools.php#L10-L20`.

```php
<?php
/**
 * Sharing Image tools settings tab.
 *
 * @package sharing-image
 * @author  Anton Lukin
 */

namespace Sharing_Image;

if ( ! defined( 'ABSPATH' ) ) {
	die;
}

?>

<div class="sharing-image-tools">
	<h2><?php esc_html_e( 'Tools', 'sharing-image' ); ?></h2>

	<div class="sharing-image-tools-description">
		<p>
			<?php esc_html_e( 'Use this tools page to import and export templates.', 'sharing-image' ); ?>
			<?php esc_html_e( 'Please note that importing new templates does not delete existing ones.', 'sharing-image' ); ?>
			<?php esc_html_e( 'You can also clone the template to reuse it with new settings.', 'sharing-image' ); ?>
		</p>
	</div>
</div>

```
