Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/code-snippets/php/views/partials/list-table.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
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
+