PluginProbe
Sharing Image / 3.7
Sharing Image v3.7
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 / settings.php

settings.php in Sharing Image 3.7, at templates/settings.php

44 lines 777 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Sharing Image main settings template.
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 id="sharing-image-settings">
18 <div class="sharing-image-header">
19 <h1><?php esc_html_e( 'Sharing Image', 'sharing-image' ); ?></h1>
20
21 <nav class="sharing-image-menu">
22 <?php
23 self::show_settings_menu();
24 ?>
25 </nav>
26 </div>
27
28 <hr class="wp-header-end">
29
30 <div class="sharing-image-content">
31 <?php
32 self::show_settings_section();
33 ?>
34
35 <div class="sharing-image-error hide-if-js">
36 <p><?php esc_html_e( 'This page requires JavaScript. Enable it in your browser settings, please.', 'sharing-image' ); ?></p>
37 </div>
38
39 <?php
40 self::show_settings_message();
41 ?>
42 </div>
43 </div>
44