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

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

47 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 ?>
6 <style>
7 #no_permission_page {
8 background: #fff;
9 border: 1px solid #ccd0d4;
10 color: #444;
11 margin: 2em auto;
12 padding: 1em 2em;
13 max-width: 700px;
14 box-shadow: 0 1px 1px rgb(0 0 0 / 4%);
15 }
16 </style>
17
18 <?php
19 do_action_deprecated(
20 'fluentform_before_no_permission',
21 [
22 ],
23 FLUENTFORM_FRAMEWORK_UPGRADE,
24 'fluentform/before_no_permission',
25 'Use fluentform/before_no_permission instead of fluentform_before_no_permission.'
26 );
27 do_action('fluentform/before_no_permission');
28 ?>
29
30 <div id="no_permission_page">
31 <div class="wp-die-message">
32 <?php esc_html_e('Sorry, you are not allowed to access this page.', 'fluentform'); ?>
33 </div>
34 </div>
35
36 <?php
37 do_action_deprecated(
38 'fluentform_after_no_permission',
39 [
40 ],
41 FLUENTFORM_FRAMEWORK_UPGRADE,
42 'fluentform/after_no_permission',
43 'Use fluentform/after_no_permission instead of fluentform_after_no_permission.'
44 );
45 do_action('fluentform/after_no_permission');
46 ?>
47