✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.223
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/includes/options//maintenance.php
<?php
/**
 * Avada Options.
 *
 * @author     ThemeFusion
 * @copyright  (c) Copyright by ThemeFusion
 * @link       https://avada.com
 * @package    Avada
 * @subpackage Core
 * @since      7.9
 */

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'Direct script access denied.' );
}

/**
 * Maintenance
 *
 * @since 7.9
 * @param array $sections An array of our sections.
 * @return array
 */
function avada_options_section_maintenance( $sections ) {

	// Function exists check for old versions running the GO migrationnnnn where options get loaded early on.
	$user_roles = function_exists( 'AWB_Maintenance_Mode' ) ? AWB_Maintenance_Mode()->get_user_role_names() : [];
	$templates  = function_exists( 'AWB_Maintenance_Mode' ) ? AWB_Maintenance_Mode()->get_library_templates() : [
		'titles'     => [],
		'permalinks' => [],
	];

	$sections['maintenance'] = [
		'label'    => esc_html__( 'Maintenance Mode', 'Avada' ),
		'id'       => 'heading_maintenance',
		'priority' => 26,
		'icon'     => 'el-icon-off',
		'alt_icon' => 'fusiona-power-off',
		'fields'   => [
			'maintenance_mode'         => [
				'label'       => esc_html__( 'Mode', 'Avada' ),
				'description' => esc_html__( 'Set your site to Maintenance Mode to take it offline temporarily (status code 503), or to Coming Soon mode (status code 200), taking it offline until it is ready to be launched.', 'Avada' ),
				'id'          => 'maintenance_mode',
				'default'     => '',
				'type'        => 'radio-buttonset',
				'choices'     => [
					''            => esc_html__( 'Off', 'Avada' ),
					'maintenance' => esc_html__( 'Maintenance', 'Avada' ),
					'coming_soon' => esc_html__( 'Coming Soon', 'Avada' ),
				],
			],
			'maintenance_redirect_url' => [
				'label'       => esc_html__( 'URL Redirect', 'Avada' ),
				'description' => esc_html__( 'If set, this option will redirect users without access to the URL given. Enter with protocol (e.g. https://).', 'Avada' ),
				'id'          => 'maintenance_redirect_url',
				'default'     => '',
				'type'        => 'text',
				'required'    => [
					[
						'setting'  => 'maintenance_mode',
						'operator' => '!=',
						'value'    => '',
					],
				],
			],
			'maintenance_template'     => [
				'label'       => esc_html__( 'Page Template', 'Avada' ),
				'description' => esc_html__( 'Select an Avada Library template for the Maintenance or Coming Soon page.', 'Avada' ),
				'id'          => 'maintenance_template',
				'default'     => '0',
				'type'        => 'select',
				'choices'     => $templates['titles'],
				'quick_edit'  => [
					'label' => esc_html__( 'Edit Template', 'Avada' ),
					'type'  => 'template',
					'items' => $templates['permalinks'],
				],
				'required'    => [
					[
						'setting'  => 'maintenance_mode',
						'operator' => '!=',
						'value'    => '',
					],
					[
						'setting'  => 'maintenance_redirect_url',
						'operator' => '=',
						'value'    => '',
					],                  
				],
			],
			'maintenance_user_roles'   => [
				'label'       => esc_html__( 'User Roles For Access', 'Avada' ),
				'description' => __( 'Select the user roles that should be able to access the site when. <strong>NOTE:</strong> Administrators will always have access.', 'Avada' ),
				'id'          => 'maintenance_user_roles',
				'default'     => '',
				'type'        => 'select',
				'multi'       => true,
				'choices'     => $user_roles,
				'required'    => [
					[
						'setting'  => 'maintenance_mode',
						'operator' => '!=',
						'value'    => '',
					],
				],
			],
			'maintenance_exclude'      => [
				'label'       => esc_html__( 'Exclude', 'Avada' ),
				'description' => esc_html__( 'Exclude parts of your site like feed, pages, or archives from Maintenance or Coming Soon mode. Add one slug or URL per line.', 'Avada' ),
				'id'          => 'maintenance_exclude',
				'default'     => '',
				'type'        => 'textarea',
				'required'    => [
					[
						'setting'  => 'maintenance_mode',
						'operator' => '!=',
						'value'    => '',
					],
				],
			],
			'maintenance_page_title'   => [
				'label'       => esc_html__( 'Page Title HTML Tag', 'Avada' ),
				'description' => esc_html__( 'This will also be used in the default page template. Leave empty for default title.', 'Avada' ),
				'id'          => 'maintenance_page_title',
				'default'     => '',
				'type'        => 'text',
				'required'    => [
					[
						'setting'  => 'maintenance_mode',
						'operator' => '!=',
						'value'    => '',
					],
					[
						'setting'  => 'maintenance_redirect_url',
						'operator' => '=',
						'value'    => '',
					],
				],
			],
			'maintenance_robots_meta'  => [
				'label'       => esc_html__( 'Robots Meta Tag', 'Avada' ),
				'description' => esc_html__( 'Decide whether the Maintenance or Coming Soon page should get indexed by search engines.', 'Avada' ),
				'id'          => 'maintenance_robots_meta',
				'default'     => 'noindex',
				'type'        => 'radio-buttonset',
				'choices'     => [
					'index'   => esc_html__( 'Index/Follow', 'Avada' ),
					'noindex' => esc_html__( 'Noindex/Nofollow', 'Avada' ),
				],
				'required'    => [
					[
						'setting'  => 'maintenance_mode',
						'operator' => '!=',
						'value'    => '',
					],
					[
						'setting'  => 'maintenance_redirect_url',
						'operator' => '=',
						'value'    => '',
					],
				],
			],
		],
	];

	return $sections;

}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
23 Sep 2026 8.46 AM
docteuh / users
0755
advanced.php
22.96 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
background.php
12.642 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
bbpress.php
2.733 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
blog.php
39.782 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
breadcrumbs.php
6.905 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
colors.php
2.941 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
contact.php
26.057 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
custom_css.php
1.426 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
elastic_slider.php
9.462 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
events_calendar.php
18.704 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
extra.php
50.026 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
footer.php
37.55 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
forms.php
12.873 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
header.php
58.924 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
icon-redirect-manager.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
layout.php
13.368 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
lightbox.php
16.253 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
logo.php
20.333 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
maintenance.php
5.342 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
menu.php
103.655 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
page_title_bar.php
19.408 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
performance.php
29.365 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
portfolio.php
28.033 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
privacy.php
20.942 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
recaptcha.php
5.526 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
responsive.php
11.644 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
search.php
20.837 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
shortcode_styling.php
1.35 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
sidebars.php
29.613 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
slideshows.php
4.727 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
sliding_bar.php
22.119 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
social_media.php
39.614 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
typography.php
49.518 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
woocommerce.php
50.812 KB
20 Nov 2023 7.11 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF