PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.14
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.14
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 / all_entries.php

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

69 lines 2.4 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 do_action_deprecated(
6 'fluentform_global_menu',
7 [
8 ],
9 FLUENTFORM_FRAMEWORK_UPGRADE,
10 'fluentform/global_menu',
11 'Use fluentform/global_menu instead of fluentform_global_menu.'
12 );
13 do_action('fluentform/global_menu');
14 ?>
15 <div class="ff_form_wrap">
16 <div class="ff_form_wrap_area">
17 <?php
18 do_action_deprecated(
19 'fluentform_before_all_entries_render',
20 [
21 ],
22 FLUENTFORM_FRAMEWORK_UPGRADE,
23 'fluentform/before_all_entries_render',
24 'Use fluentform/before_all_entries_render instead of fluentform_before_all_entries_render.'
25 );
26 do_action('fluentform/before_all_entries_render');
27 ?>
28 <div class="ff_all_forms" id="ff_all_forms_app">
29 <div id="ff_all_entries"><ff-all-entries></ff-all-entries><global-search></global-search></div>
30 </div>
31 <?php
32 do_action_deprecated(
33 'fluentform_after_all_entries_render',
34 [
35 ],
36 FLUENTFORM_FRAMEWORK_UPGRADE,
37 'fluentform/after_all_entries_render',
38 'Use fluentform/after_all_entries_render instead of fluentform_after_all_entries_render.'
39 );
40 do_action('fluentform/after_all_entries_render');
41 ?>
42 </div>
43 </div>
44 <?php
45 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template variable
46 $dashboard_notices = apply_filters_deprecated(
47 'fluentform_dashboard_notices',
48 [
49 []
50 ],
51 FLUENTFORM_FRAMEWORK_UPGRADE,
52 'fluentform/dashboard_notices',
53 'Use fluentform/dashboard_notices instead of fluentform_dashboard_notices.'
54 );
55 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template variable
56 $notices = apply_filters('fluentform/dashboard_notices', $dashboard_notices);
57
58 if ($notices) {
59 echo '<div class="ff_global_notices">';
60 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template variables in foreach loop
61 foreach ($notices as $noticeKey => $notice) :
62 ?>
63 <div class="ff_global_notice ff_notice_<?php echo esc_attr($notice['type']); ?>">
64 <?php echo esc_html($notice['message']); ?>
65 </div>
66 <?php
67 endforeach;
68 echo '</div>';
69 }