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