PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.13
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.13
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 / form-templates / list.php

list.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.13, at classes/views/form-templates/list.php

48 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Form Templates - list.
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-form-templates-page-title" class="frm-flex-box frm-justify-between frm-items-center">
13 <h2 id="frm-form-templates-page-title-text" class="frm-form-templates-title frm-text-sm frm-m-0"><?php esc_html_e( 'All Templates', 'formidable' ); ?></h2>
14 <a id="frm-show-create-template-modal" href="#" class="button button-primary frm-button-primary frm_hidden" role="button"><?php esc_html_e( 'Create Template', 'formidable' ); ?></a>
15 </div>
16 <span id="frm-form-templates-page-title-divider" class="frm-form-templates-divider frm-mb-xs frm_hidden"></span>
17
18 <ul id="frm-form-templates-featured-list" class="frm-form-templates-list frm-form-templates-grid-layout">
19 <?php
20 foreach ( $featured_templates as $template ) {
21 require $view_path . 'template.php';
22 }
23 ?>
24 </ul>
25
26 <?php FrmFormTemplatesHelper::show_upgrade_renew_cta( compact( 'expired', 'upgrade_link', 'renew_link' ) ); ?>
27
28 <ul id="frm-form-templates-list" class="frm-form-templates-list frm-form-templates-grid-layout frm-mb-xs">
29 <?php
30 foreach ( $templates as $template ) {
31 require $view_path . 'template.php';
32 }
33 ?>
34 </ul>
35
36 <div id="frm-form-templates-custom-list-section">
37 <h2 id="frm-form-templates-custom-list-title" class="frm-text-sm frm-mb-sm frm_hidden">
38 <?php esc_html_e( 'Custom', 'formidable' ); ?>
39 </h2>
40 <ul id="frm-form-templates-custom-list" class="frm-form-templates-list frm-form-templates-grid-layout frm-mb-xs frm_hidden">
41 <?php
42 foreach ( $custom_templates as $template ) {
43 require $view_path . 'template.php';
44 }
45 ?>
46 </ul>
47 </div>
48