REDROOM
PHP 8.0.30
Path:
Logout
Edit File
Size: 6.70 KB
Close
/home/certprox/zang.certproxywizard.com/wp/wp-content/plugins/fluentform/app/Views/admin/global_menu.php
Text
Base64
<?php // phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template variables in view files use FluentForm\App\Modules\Acl\Acl; // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.ValidatedSanitizedInput.InputNotValidated, WordPress.Security.ValidatedSanitizedInput.MissingUnslash -- Admin menu display, no nonce needed $page = sanitize_text_field($_GET['page']); ?> <div class="ff_header"> <div class="ff_header_group"> <span class="plugin-name"> <img src="<?php echo esc_url($logo); ?>"/> </span> <span class="ff_menu_toggle"> <i class="ff-icon ff-icon-menu"></i> </span> </div> <ul class="ff_menu"> <li class="<?php echo ($page == 'fluent_forms') ? 'active' : '' ?>"> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms')); ?>" class="ff_menu_link"> <?php esc_html_e('Forms', 'fluentform'); ?> </a> </li> <li class="<?php echo ($page == 'fluent_forms_all_entries') ? 'active' : '' ?>"> <?php if (Acl::hasPermission('fluentform_entries_viewer')): ?> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_all_entries'));?>" class="ff_menu_link"> <?php esc_html_e('Entries', 'fluentform'); ?> </a> <?php endif; ?> </li> <li class="<?php echo ($page == 'fluent_forms_reports') ? 'active' : '' ?>"> <?php if (Acl::hasPermission('fluentform_entries_viewer')): ?> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_reports'));?>" class="ff_menu_link"> <?php esc_html_e('Reports', 'fluentform'); ?> </a> <?php endif; ?> </li> <li class="<?php echo ($page == 'fluent_forms_payment_entries') ? 'active' : '' ?>"> <?php if ($show_payment_entries && Acl::hasPermission('fluentform_view_payments')): ?> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_payment_entries')); ?>" class="ff_menu_link"> <?php esc_html_e('Payments', 'fluentform'); ?> </a> <?php endif; ?> </li> <?php if (Acl::hasPermission('fluentform_settings_manager')): ?> <li class="<?php echo ($page == 'fluent_forms_settings') ? 'active' : '' ?>"> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_settings')); ?>" class="ff_menu_link"> <?php esc_html_e('Global Settings', 'fluentform'); ?> </a> </li> <li class="<?php echo ($page == 'fluent_forms_transfer') ? 'active' : '' ?>"> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_transfer')); ?>" class="ff_menu_link"> <?php esc_html_e('Tools', 'fluentform'); ?> </a> </li> <li class="<?php echo ($page == 'fluent_forms_add_ons') ? 'active' : '' ?>"> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_add_ons')); ?>" class="ff_menu_link"> <?php esc_html_e('Integrations', 'fluentform'); ?> </a> </li> <?php endif; ?> <li> <?php if ($show_payment && Acl::hasPermission('fluentform_view_payments')): ?> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_settings#payments/general_settings')); ?>" class="ff_menu_link"> <?php esc_html_e('Payments', 'fluentform'); ?><span class="ff_new_badge">new</span> </a> <?php endif; ?> </li> <li class="<?php echo ($page == 'fluent_forms_smtp') ? 'active' : '' ?>"> <?php if(!defined('FLUENT_MAIL') && !defined('FLUENTFORMPRO')): ?> <a class="ff_menu_link" href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_smtp')); ?>">SMTP</a> <?php endif; ?> </li> <li class="<?php echo ($page == 'fluent_forms_docs') ? 'active' : '' ?>"> <a href="<?php echo esc_url(admin_url('admin.php?page=fluent_forms_docs')); ?>" class="ff_menu_link"> <?php esc_html_e('Support', 'fluentform'); ?> </a> </li> <?php if(!defined('FLUENTFORMPRO')): ?> <li> <a target="_blank" rel="noopener" href="<?php echo esc_url(fluentform_upgrade_url()); ?>" class="ff_menu_link ff_menu_link_buy"> <?php esc_html_e('Upgrade to Pro', 'fluentform'); ?> </a> </li> <?php endif; ?> </ul> <?php $globalSearchActive = apply_filters('fluentform/global_search_active', 'yes'); $globalSearchButtonClickScript = ""; if ($globalSearchActive == 'yes') { $globalSearchButtonClickScript = "jQuery('.global-search-menu-button').on('click', function() { document.dispatchEvent(new CustomEvent('global-search-menu-button-click')); });"; $user_agent = getenv("HTTP_USER_AGENT"); if (!empty($user_agent) && strpos($user_agent, "Win") !== FALSE) { $key = "Ctrl "; } else { $key = "⌘"; } } ?> <?php if($globalSearchActive == 'yes'):?> <button class="global-search-menu-button"> <span class="el-icon-search"></span> <span class="shortcut"><?php echo esc_html($key)?>K </span> </button> <?php endif; ?> <?php do_action_deprecated( 'fluentform_after_global_menu', [ ], FLUENTFORM_FRAMEWORK_UPGRADE, 'fluentform/after_global_menu', 'Use fluentform/after_global_menu instead of fluentform_after_global_menu.' ); do_action('fluentform/after_global_menu'); wp_add_inline_script('fluent_forms_global', " //for mobile nav let globalHeaderMenuElem = jQuery('.ff_menu'); jQuery('.ff_menu_toggle').on('click', function() { globalHeaderMenuElem.toggleClass('ff_menu_active'); }); $globalSearchButtonClickScript // for setting sidebar let globalSettingSidebarElem = jQuery('.ff_settings_sidebar_wrap'); let globalOverlayElem = jQuery('#global-overlay'); jQuery('.ff_sidebar_toggle').on('click', function() { jQuery(globalSettingSidebarElem).add(globalOverlayElem).toggleClass('active'); }); jQuery(globalOverlayElem).on('click', function() { jQuery(globalOverlayElem).add(globalSettingSidebarElem).removeClass('active'); }); "); ?> </div> <?php do_action('fluentform/after_global_menu_render',$page); ?>
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 8 × Files: 7
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
addons
DIR
-
drwxr-xr-x
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
docs
DIR
-
drwxr-xr-x
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
form
DIR
-
drwxr-xr-x
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
globalSettings
DIR
-
drwxr-xr-x
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
notices
DIR
-
drwxr-xr-x
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
reports
DIR
-
drwxr-xr-x
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
smtp
DIR
-
drwxr-xr-x
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
tools
DIR
-
drwxr-xr-x
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
all_entries.php
2.42 KB
lrw-r--r--
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
all_forms.php
2.36 KB
lrw-r--r--
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
global_menu.php
6.70 KB
lrw-r--r--
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
index.php
26 B
lrw-r--r--
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
menu-old.php
1.76 KB
lrw-r--r--
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
menu.php
162 B
lrw-r--r--
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
no_permission.php
1.03 KB
lrw-r--r--
2026-03-30 10:23:25
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).