PluginProbe
Code Snippets / 2.14.0
Code Snippets v2.14.0
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / php / views / manage.php

manage.php in Code Snippets 2.14.0, at php/views/manage.php

64 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * HTML code for the Manage Snippets page
5 *
6 * @package Code_Snippets
7 * @subpackage Views
8 *
9 * @var Code_Snippets_Manage_Menu $this
10 */
11
12 /* Bail if accessed directly */
13 if ( ! defined( 'ABSPATH' ) ) {
14 return;
15 }
16
17 ?>
18
19 <div class="wrap">
20 <h1><?php
21 esc_html_e( 'Snippets', 'code-snippets' );
22
23 printf( '<a href="%2$s" class="page-title-action add-new-h2">%1$s</a>',
24 esc_html_x( 'Add New', 'snippet', 'code-snippets' ),
25 code_snippets()->get_menu_url( 'add' )
26 );
27
28 printf( '<a href="%2$s" class="page-title-action">%1$s</a>',
29 esc_html_x( 'Import', 'snippets', 'code-snippets' ),
30 code_snippets()->get_menu_url( 'import' )
31 );
32
33 $admin = code_snippets()->admin;
34
35 if ( $admin->is_compact_menu() && isset( $admin->menus['settings'] ) ) {
36 printf( '<a href="%2$s" class="page-title-action">%1$s</a>',
37 esc_html_x( 'Settings', 'snippets', 'code-snippets' ),
38 code_snippets()->get_menu_url( 'settings' )
39 );
40 }
41
42 $this->list_table->search_notice();
43 ?></h1>
44
45 <?php $this->list_table->views(); ?>
46
47 <form method="get" action="">
48 <?php
49 $this->list_table->required_form_fields( 'search_box' );
50 $this->list_table->search_box( __( 'Search Installed Snippets', 'code-snippets' ), 'search_id' );
51 ?>
52 </form>
53 <form method="post" action="">
54 <input type="hidden" id="code_snippets_ajax_nonce" value="<?php echo esc_attr( wp_create_nonce( 'code_snippets_manage_ajax' ) ); ?>">
55
56 <?php
57 $this->list_table->required_form_fields();
58 $this->list_table->display();
59 ?>
60 </form>
61
62 <?php do_action( 'code_snippets/admin/manage' ); ?>
63 </div>
64