PluginProbe
Sharing Image / 2.0.3
Sharing Image v2.0.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 / config.php

config.php in Sharing Image 2.0.3, at templates/config.php

52 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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