PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.7
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.7
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
fluentform / app / Views / admin / reports / index.php

index.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 6.2.7, at app/Views/admin/reports/index.php

39 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined('ABSPATH') or die;
4
5 // phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template variables in view files
6 do_action('fluentform/global_menu');
7 ?>
8 <div class="ff_form_wrap">
9 <div class="ff_form_wrap_area">
10 <?php
11 do_action('fluentform/before_form_reports_render');
12 ?>
13 <div class="ff_all_forms" id="ff_all_forms_app">
14 <div id="ff_reports">
15 <ff-reports></ff-reports>
16 <global-search></global-search>
17 </div>
18 </div>
19 <?php
20 do_action('fluentform/after_form_reports_render');
21 ?>
22 </div>
23 </div>
24 <?php
25 $notices = apply_filters('fluentform/dashboard_notices', []);
26
27 if ($notices) {
28 echo '<div class="ff_global_notices">';
29 foreach ($notices as $noticeKey => $notice) :
30 ?>
31 <div class="ff_global_notice ff_notice_<?php
32 echo esc_attr($notice['type']); ?>">
33 <?php
34 echo esc_html($notice['message']); ?>
35 </div>
36 <?php
37 endforeach;
38 echo '</div>';
39 }