PluginProbe
Sharing Image / 2.0.1
Sharing Image v2.0.1
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 2.0.1, at templates/settings.php

42 lines 751 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 $this->show_settings_menu();
24 ?>
25 </nav>
26 </div>
27
28 <div class="sharing-image-content">
29 <?php
30 $this->show_settings_section();
31 ?>
32
33 <div class="sharing-image-error hide-if-js">
34 <p><?php esc_html_e( 'This page requires JavaScript. Enable it in your browser settings, please.', 'sharing-image' ); ?></p>
35 </div>
36
37 <?php
38 $this->show_settings_message();
39 ?>
40 </div>
41 </div>
42