PluginProbe
Code Snippets / 2.12.1
Code Snippets v2.12.1
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.12.1, at php/views/manage.php

55 lines 1.2 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 $this->list_table->search_notice();
34 ?></h1>
35
36 <?php $this->list_table->views(); ?>
37
38 <form method="get" action="">
39 <?php
40 $this->list_table->required_form_fields( 'search_box' );
41 $this->list_table->search_box( __( 'Search Installed Snippets', 'code-snippets' ), 'search_id' );
42 ?>
43 </form>
44 <form method="post" action="">
45 <input type="hidden" id="code_snippets_ajax_nonce" value="<?php echo esc_attr( wp_create_nonce( 'code_snippets_manage' ) ); ?>">
46
47 <?php
48 $this->list_table->required_form_fields();
49 $this->list_table->display();
50 ?>
51 </form>
52
53 <?php do_action( 'code_snippets/admin/manage' ); ?>
54 </div>
55