PluginProbe
Code Snippets / 3.6.6
Code Snippets v3.6.6
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 / partials / list-table.php

list-table.php in Code Snippets 3.6.6, at php/views/partials/list-table.php

34 lines 673 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * HTML for the all snippets and codevault list table
4 *
5 * @package Code_Snippets
6 * @subpackage Views
7 */
8
9 namespace Code_Snippets;
10
11 /**
12 * Loaded from the manage menu.
13 *
14 * @var Manage_Menu $this
15 */
16
17 ?>
18
19 <form method="get" action="">
20 <?php
21 List_Table::required_form_fields( 'search_box' );
22 $this->list_table->search_box( __( 'Search Snippets', 'code-snippets' ), 'search_id' );
23 ?>
24 </form>
25
26 <form method="post" action="">
27 <input type="hidden" id="code_snippets_ajax_nonce"
28 value="<?php echo esc_attr( wp_create_nonce( 'code_snippets_manage_ajax' ) ); ?>">
29 <?php
30 List_Table::required_form_fields();
31 $this->list_table->display();
32 ?>
33 </form>
34