PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.20
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.20
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 / addons / index.php

index.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.20, at classes/views/addons/index.php

47 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Add-Ons Page.
4 *
5 * @package Formidable
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 die( 'You are not allowed to call this page directly.' );
10 }
11 ?>
12 <div id="frm-addons-page" class="frm_wrap frm-page-skeleton">
13 <div class="frm_page_container">
14 <?php
15 FrmAppHelper::get_admin_header(
16 array(
17 'label' => __( 'Formidable Add-Ons', 'formidable' ),
18 )
19 );
20 ?>
21
22 <div class="columns-2">
23 <div id="frm-page-skeleton-sidebar" class="frm-right-panel frm-flex-col frm-hide-js">
24 <div class="frm-scrollbar-wrapper frm-flex-col frm-gap-sm">
25 <?php
26 // Search box.
27 FrmAppHelper::show_search_box(
28 array(
29 'input_id' => 'addon',
30 'placeholder' => __( 'Search Add-Ons', 'formidable' ),
31 'tosearch' => 'frm-searchable-addon',
32 )
33 );
34
35 // Categories list.
36 require $view_path . 'categories.php';
37 ?>
38 </div>
39 </div>
40
41 <div id="post-body-content" class="frm-flex-col frm-gap-sm frm-p-xl frm-hide-js">
42 <?php require $view_path . 'list.php'; ?>
43 </div>
44 </div>
45 </div>
46 </div>
47