| 1 |
<?php |
| 2 |
/** |
| 3 |
* Sharing Image config 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-config"> |
| 18 |
<h2><?php esc_html_e( 'Configuration', 'sharing-image' ); ?></h2> |
| 19 |
|
| 20 |
<div class="sharing-image-config-description"> |
| 21 |
<p> |
| 22 |
<?php |
| 23 |
printf( |
| 24 |
// translators: Link to website. |
| 25 |
esc_html__( 'Read the detailed instructions for configuring the plugin on the plugin %s.', 'sharing-image' ), |
| 26 |
sprintf( |
| 27 |
'<a href="%s" target="_blank" rel="noopener">%s</a>', |
| 28 |
esc_attr( 'https://wpget.org/sharing-image/' ), |
| 29 |
esc_html__( 'website', 'sharing-image' ) |
| 30 |
), |
| 31 |
); |
| 32 |
?> |
| 33 |
|
| 34 |
<?php esc_html_e( 'If you are in doubt about the purpose of the settings, leave the default values.', 'sharing-image' ); ?> |
| 35 |
|
| 36 |
<?php |
| 37 |
printf( |
| 38 |
// translators: Link to support forum. |
| 39 |
esc_html__( 'Ask your question on the %s if you have any difficulties.', 'sharing-image' ), |
| 40 |
sprintf( |
| 41 |
'<a href="%s" target="_blank" rel="noopener">%s</a>', |
| 42 |
esc_attr( 'https://wordpress.org/support/plugin/sharing-image/' ), |
| 43 |
esc_html__( 'support forum', 'sharing-image' ) |
| 44 |
), |
| 45 |
); |
| 46 |
?> |
| 47 |
|
| 48 |
<?php esc_html_e( 'We will try to help you as soon as possible.', 'sharing-image' ); ?> |
| 49 |
</p> |
| 50 |
</div> |
| 51 |
</div> |
| 52 |
|