PluginProbe
WP Coder – Insert & Manage Code Snippets / 4.3
WP Coder – Insert & Manage Code Snippets v4.3
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / includes / pages / 3.snippets.php

3.snippets.php in WP Coder – Insert & Manage Code Snippets 4.3, at includes/pages/3.snippets.php

30 lines 586 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 use WPCoder\Dashboard\DashboardInitializer;
4 use WPCoder\Snippets\SnippetManager;
5
6 defined( 'ABSPATH' ) || exit;
7
8 if ( ! current_user_can( 'unfiltered_html' ) ) {
9 wp_die( esc_attr__( 'You do not have sufficient permissions to access this page.', 'wp-coder' ) );
10 }
11
12
13 ?>
14
15 <div class="wowp">
16 <?php DashboardInitializer::header(); ?>
17
18 <div class="wowp-page-header">
19 <h2 class="wowp-page-header__title">
20 <?php esc_html_e( 'Snippets Manager', 'wp-coder' ); ?>
21 </h2>
22 </div>
23
24 <?php SnippetManager::init(); ?>
25
26 </div>
27
28 <?php
29
30