PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 4.06.03
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v4.06.03
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / frm-forms / list.php

list.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 4.06.03, at classes/views/frm-forms/list.php

30 lines 828 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="frm_wrap">
2 <?php
3 FrmAppHelper::get_admin_header(
4 array(
5 'label' => $params['template'] ? __( 'Templates', 'formidable' ) : __( 'Forms', 'formidable' ),
6 'new_link' => ( ! $params['template'] && current_user_can( 'frm_edit_forms' ) ) ? '?page=formidable&frm_action=add_new' : '',
7 'import_link' => true,
8 )
9 );
10 ?>
11 <div class="wrap">
12 <?php
13 require( FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php' );
14 $wp_list_table->views();
15 ?>
16
17 <form id="posts-filter" method="get">
18 <input type="hidden" name="page" value="<?php echo esc_attr( FrmAppHelper::simple_get( 'page', 'sanitize_title' ) ); ?>" />
19 <input type="hidden" name="frm_action" value="list" />
20 <?php
21
22 $wp_list_table->search_box( __( 'Search', 'formidable' ), 'entry' );
23 $wp_list_table->display();
24
25 ?>
26 </form>
27
28 </div>
29 </div>
30