| 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 |
|