PluginProbe ʕ •ᴥ•ʔ
Email Encoder – Protect Email Addresses and Phone Numbers / 2.0.5
Email Encoder – Protect Email Addresses and Phone Numbers v2.0.5
2.5.2 2.5.1 2.5.0 2.4.8 trunk 0.10 0.11 0.12 0.20 0.21 0.22 0.30 0.31 0.32 0.40 0.41 0.42 0.50 0.60 0.70 0.71 0.80 1.0.0 1.0.1 1.0.2 1.1.0 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.5 1.5.2 1.51 1.53 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7
email-encoder-bundle / core / includes / partials / eeb-page-display.php
email-encoder-bundle / core / includes / partials Last commit date
help-tabs 6 years ago widgets 6 years ago eeb-page-display.php 6 years ago index.php 6 years ago
eeb-page-display.php
43 lines
1 <?php
2 /**
3 * Main Template
4 */
5
6 $currentScreen = get_current_screen();
7 $columnCount = (1 == $currentScreen->get_columns()) ? 1 : 2;
8 $mulsitie_slug = ( is_multisite() ) ? 'network/' : '';
9
10 ?>
11
12 <div class="wrap">
13 <h1><?php echo get_admin_page_title() ?></h1>
14
15 <?php if( ! empty( $this->display_notices ) ) : ?>
16 <div class="eeb-admin-notices">
17 <?php foreach( $this->display_notices as $single_notice ) : ?>
18 <?php echo $single_notice; ?>
19 <?php endforeach; ?>
20 </div>
21 <?php endif; ?>
22
23 <form method="post" action="">
24 <?php settings_fields( $this->page_name ); ?>
25
26 <input type="hidden" name="<?php echo $this->page_name; ?>_nonce" value="<?php echo wp_create_nonce( $this->page_name ) ?>">
27
28 <div id="poststuff">
29 <div id="post-body" class="metabox-holder columns-<?php echo $columnCount; ?>">
30 <?php include( 'widgets/main.php' ); ?>
31
32 <div id="postbox-container-1" class="postbox-container">
33 <?php include( 'widgets/sidebar.php' ); ?>
34 </div>
35
36 <div id="postbox-container-2" class="postbox-container">
37 <?php do_meta_boxes('', 'normal', ''); ?>
38 </div>
39 </div>
40 </div>
41 </form>
42 </div>
43