HEX
Server: Apache
System: Linux 4801f1b1.ptr.provps.com 6.17.8-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 13 18:02:25 EST 2025 x86_64
User: nassaugo (1004)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nassaugo/www/wp-content/themes/drone-media/front-page/front-page.options.php
<?php
/**
 * Setup options for the Front Page
 *
 * @package WordPress
 * @subpackage DRONE_MEDIA
 * @since DRONE_MEDIA 1.0.31
 */


// Theme init priorities:
// 1 - register filters, that add/remove lists items for the Theme Options
if (!function_exists('drone_media_front_page_setup1')) {
	add_action( 'after_setup_theme', 'drone_media_front_page_setup1', 1 );
	function drone_media_front_page_setup1() {
		add_filter( 'drone_media_filter_list_sidebars', 'drone_media_front_page_sidebars' );
	}
}


// Theme init priorities:
// 3 - add/remove Theme Options elements
if (!function_exists('drone_media_front_page_setup3')) {
	add_action( 'after_setup_theme', 'drone_media_front_page_setup3', 3 );
	function drone_media_front_page_setup3() {

		drone_media_storage_set_array_before('options', 'blog', apply_filters('drone_media_filter_front_page_options', array(
		
			// 'Front Page Sections'
			'front_page' => array(
				"title" => esc_html__('Front Page Builder', 'drone-media'),
				"desc" => wp_kses_data(__('More fine tuning component display Front Page (view and menu position, presence and position of the sidebar, header and footer, etc.) you can produce in the section "Page Options" when editing a page, selected as Front Page', 'drone-media')),
				"priority" => 65,
				"type" => "panel",
				),
		
				// Front Page Sections - General
				'front_page_general' => array(
					"title" => esc_html__('General', 'drone-media'),
					"desc" => '',
					"priority" => 10,
					"type" => "section",
					),
				'front_page_general_info' => array(
					"title" => esc_html__('General settings', 'drone-media'),
					"desc" => '',
					"type" => "info",
					),
				'front_page_enabled' => array(
					"title" => esc_html__('Enable Front Page builder', 'drone-media'),
					"desc" => wp_kses_data( __('If Front Page Builder is off - native page content will be shown', 'drone-media') ),
					"std" => DRONE_MEDIA_THEME_FREE ? 1 : 0,
					"type" => "checkbox"
					),
				'body_style_front' => array(
					"title" => esc_html__('Body style', 'drone-media'),
					"desc" => wp_kses_data( __('Select width of the body content of the front page', 'drone-media') ),
					"refresh" => false,
					"std" => 'fullscreen',
					"options" => drone_media_get_list_body_styles(true),
					"type" => "select"
					),
				'remove_margins_front' => array(
					"title" => esc_html__('Remove margins', 'drone-media'),
					"desc" => wp_kses_data( __('Remove margins above and below the content area on the front page', 'drone-media') ),
					"refresh" => false,
					"std" => 1,
					"type" => "checkbox"
					),
				'front_page_sections' => array(
					"title" => esc_html__('Sections order', 'drone-media'),
					"desc" => wp_kses_data( __("Drag and drop sections below to set up their order on the Front Page. You can also enable / disable any section.", 'drone-media') ),
					"dependency" => array(
						'front_page_enabled' => array(1)
					),
					"dir" => 'vertical',
					"sortable" => true,
					"std" => '',
					"options" => array(),
					"type" => "checklist"
					),
				'front_page_bg_image' => array(
					"title" => esc_html__('Background image', 'drone-media'),
					"desc" => wp_kses_data( __('Select or upload background image for whole Front page', 'drone-media') ),
					"refresh" => false,
					"dependency" => array(
						'front_page_enabled' => array(1)
					),
					"std" => DRONE_MEDIA_THEME_FREE ? drone_media_get_file_url('front-page/images/bg.jpg') : '',
					"type" => "image"
					)
		)));

		drone_media_storage_set_array_before('options', 'blog', array(
			'front_page_end' => array(
				"type" => "panel_end",
				)
		));
		
	}
}



// Add section 'Title' to the Front Page option
if (!function_exists('drone_media_front_page_options_title')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_title' );
	function drone_media_front_page_options_title($options) {
		
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'title=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'title' => esc_html__('Big title', 'drone-media')
																	)
																);
		$options = array_merge($options, array(
		
			// Front Page Sections - Title
			'front_page_title' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"priority" => 20,
				"type" => "section",
				),
			'front_page_title_slider_info' => array(
				"title" => esc_html__('Slider', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_title_shortcode' => array(
				"title" => esc_html__('Slider Shortcode', 'drone-media'),
				"desc" => wp_kses_data( __("Paste a shortcode generated by any slider plugin. The slider will be used instead of the section title, description and buttons.", 'drone-media') ),
				"sanitize" => 'wp_kses_post',
				"std" => '',
				"type" => "text"
				),
			'front_page_title_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "info",
				),
			'front_page_title_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 1,
				"refresh" => false,
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "checkbox"
				),
			'front_page_title_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'large',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "switch"
				),
			'front_page_title_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "info",
				),
			'front_page_title_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('Section with Big title', 'drone-media')),
				"sanitize" => 'wp_kses_post',
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "text"
				),
			'front_page_title_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Title"', 'drone-media')),
				"sanitize" => "wp_kses_post",
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "textarea"
				),
			'front_page_title_buttons_info' => array(
				"title" => esc_html__('Buttons', 'drone-media'),
				"desc" => '',
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "info",
				),
			'front_page_title_button1_link' => array(
				"title" => esc_html__('Button1 link', 'drone-media'),
				"desc" => '',
				"refresh" => '.front_page_section_title .front_page_section_title_button1',
				"refresh_wrapper" => true,
				"std" => '#',
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "text"
				),
			'front_page_title_button1_caption' => array(
				"title" => esc_html__('Button1 caption', 'drone-media'),
				"desc" => '',
				"dependency" => array(
					'front_page_title_button1_link' => array('not_empty'),
					'front_page_title_shortcode' => array('is_empty')
				),
				"refresh" => false,
				"std" => wp_kses_data(__('Customize Button 1', 'drone-media')),
				"type" => "text"
				),
			'front_page_title_button2_link' => array(
				"title" => esc_html__('Button2 link', 'drone-media'),
				"desc" => '',
				"refresh" => '.front_page_section_title .front_page_section_title_button2',
				"refresh_wrapper" => true,
				"std" => '#',
				"dependency" => array(
					'front_page_title_shortcode' => array('is_empty')
				),
				"type" => "text"
				),
			'front_page_title_button2_caption' => array(
				"title" => esc_html__('Button2 caption', 'drone-media'),
				"desc" => '',
				"dependency" => array(
					'front_page_title_button2_link' => array('not_empty'),
					'front_page_title_shortcode' => array('is_empty')
				),
				"refresh" => false,
				"std" => wp_kses_data(__('Customize Button 2', 'drone-media')),
				"type" => "text"
				),
			'front_page_title_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_title_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? 'dark' : 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_title_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_title',
				"refresh_wrapper" => true,
				"std" => DRONE_MEDIA_THEME_FREE ? drone_media_get_file_url('front-page/images/bg-title.jpg') : '',
				"type" => "image"
				),
			'front_page_title_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#000' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_title_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => DRONE_MEDIA_THEME_FREE ? 0.5 : 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_title_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data(__('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_title_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_title_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				),
		));
		return $options;
	}
}



// Add section 'Features' to the Front Page option
if (!function_exists('drone_media_front_page_options_features')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_features' );
	function drone_media_front_page_options_features($options) {
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'features=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'features' => esc_html__('Features', 'drone-media')
																	)
																);
		$options = array_merge($options, array(
		
			// Front Page Sections - Features
			'sidebar-widgets-front_page_features_widgets' => array(
				"title" => esc_html__('Features', 'drone-media'),
				"desc" => '',
				"priority" => 30,
				"type" => "section",
				),
			'front_page_features_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"priority" => -120,
				"type" => "info",
				),
			'front_page_features_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 0,
				"refresh" => false,
				"priority" => -110,
				"type" => "checkbox"
				),
			'front_page_features_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'medium',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"priority" => -100,
				"type" => "switch"
				),
			'front_page_features_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"priority" => -90,
				"type" => "info",
				),
			'front_page_features_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('Why our service is the best', 'drone-media')),
				"priority" => -80,
				"type" => "text"
				),
			'front_page_features_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Features"', 'drone-media')),
				"priority" => -70,
				"type" => "textarea"
				),
			'front_page_features_widgets_info' => array(
				"title" => esc_html__('Widgets', 'drone-media'),
				"desc" => wp_kses_data( __('You can setup widgets in this section in the menu "Appearance - Customize" or "Appearance - Widgets"', 'drone-media') )
							. '<br>'
							. wp_kses_data( __('Select the widget "ThemeREX Addons - Services". You can also select any other widget, changing thus the purpose of this section', 'drone-media') ),
				"priority" => -60,
				"type" => "info",
				),
			'front_page_features_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"priority" => 100,
				"type" => "info",
				),
			'front_page_features_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_features_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_features',
				"refresh_wrapper" => true,
				"std" => '',
				"type" => "image"
				),
			'front_page_features_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#fff' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_features_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_features_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data(__('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_features_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_features_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				)
		));
		return $options;
	}
}



// Add section 'About Us' to the Front Page option
if (!function_exists('drone_media_front_page_options_about')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_about' );
	function drone_media_front_page_options_about($options) {
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'about=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'about' => esc_html__('About Us', 'drone-media')
																	)
																);
		$options = array_merge($options, array(
	
			// Front Page Sections - About
			'front_page_about' => array(
				"title" => esc_html__('About Us', 'drone-media'),
				"desc" => '',
				"priority" => 40,
				"type" => "section",
				),
			'front_page_about_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_about_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 0,
				"refresh" => false,
				"type" => "checkbox"
				),
			'front_page_about_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'medium',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_about_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_about_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('About Us', 'drone-media')),
				"type" => "text"
				),
			'front_page_about_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "About"', 'drone-media')),
				"type" => "textarea"
				),
			'front_page_about_content_info' => array(
				"title" => esc_html__('Content', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_about_content' => array(
				"title" => esc_html__('Content', 'drone-media'),
				"desc" => wp_kses_data(__('The arbitrary content of the current section.', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! You can use %%CONTENT%% to insert instead the content of the page, selected as the Front Page in the menu "Settings - Reading" or in the "Customize - Static Front Page"', 'drone-media')
										),
				"refresh" => false,
				"std" => '',
				"teeny" => false,
				"rows" => 20,
				"type" => "text_editor"
				),
			'front_page_about_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_about_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? 'dark' : 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_about_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_about',
				"refresh_wrapper" => true,
				"std" => '',
				"type" => "image"
				),
			'front_page_about_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#000' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_about_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => DRONE_MEDIA_THEME_FREE ? 0.5 : 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_about_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data( __('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_about_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_about_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				)
		));
		return $options;
	}
}



// Add section 'Team' to the Front Page option
if (!function_exists('drone_media_front_page_options_team')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_team' );
	function drone_media_front_page_options_team($options) {
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'team=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'team' => esc_html__('Our Team', 'drone-media')
																	)
																);
		$options = array_merge($options, array(
	
			// Front Page Sections - Team
			'sidebar-widgets-front_page_team_widgets' => array(
				"title" => esc_html__('Team members', 'drone-media'),
				"desc" => '',
				"priority" => 50,
				"type" => "section",
				),
			'front_page_team_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"priority" => -120,
				"type" => "info",
				),
			'front_page_team_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 0,
				"refresh" => false,
				"priority" => -110,
				"type" => "checkbox"
				),
			'front_page_team_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'medium',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"priority" => -100,
				"type" => "switch"
				),
			'front_page_team_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"priority" => -90,
				"type" => "info",
				),
			'front_page_team_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('Meet our team', 'drone-media')),
				"priority" => -80,
				"type" => "text"
				),
			'front_page_team_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Team members"', 'drone-media')),
				"priority" => -70,
				"type" => "textarea"
				),
			'front_page_team_widgets_info' => array(
				"title" => esc_html__('Widgets', 'drone-media'),
				"desc" => wp_kses_data( __('You can setup widgets in this section in the menu "Appearance - Customize" or "Appearance - Widgets"', 'drone-media') )
							. '<br>'
							. wp_kses_data( __('Select the widget "ThemeREX Addons - Team". You can also select any other widget, changing thus the purpose of this section', 'drone-media') ),
				"priority" => -60,
				"type" => "info",
				),
			'front_page_team_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"priority" => 100,
				"type" => "info",
				),
			'front_page_team_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? 'dark' : 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_team_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_team',
				"refresh_wrapper" => true,
				"std" => DRONE_MEDIA_THEME_FREE ? drone_media_get_file_url('front-page/images/bg-team.jpg') : '',
				"type" => "image"
				),
			'front_page_team_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#000' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_team_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => DRONE_MEDIA_THEME_FREE ? 0.5 : 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_team_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data( __('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_team_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_team_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				)
		));
		return $options;
	}
}



// Add section 'Testimonials' to the Front Page option
if (!function_exists('drone_media_front_page_options_testimonials')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_testimonials' );
	function drone_media_front_page_options_testimonials($options) {
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'testimonials=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'testimonials' => esc_html__('Testimonials', 'drone-media')
																	)
																);
		$options = array_merge($options, array(
	
			// Front Page Sections - Testimonials
			'sidebar-widgets-front_page_testimonials_widgets' => array(
				"title" => esc_html__('Testimonials', 'drone-media'),
				"desc" => '',
				"priority" => 60,
				"type" => "section",
				),
			'front_page_testimonials_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"priority" => -120,
				"type" => "info",
				),
			'front_page_testimonials_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 0,
				"refresh" => false,
				"priority" => -110,
				"type" => "checkbox"
				),
			'front_page_testimonials_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'medium',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"priority" => -100,
				"type" => "switch"
				),
			'front_page_testimonials_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"priority" => -90,
				"type" => "info",
				),
			'front_page_testimonials_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('What our clients say', 'drone-media')),
				"priority" => -80,
				"type" => "text"
				),
			'front_page_testimonials_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Testimonials"', 'drone-media')),
				"priority" => -70,
				"type" => "textarea"
				),
			'front_page_testimonials_widgets_info' => array(
				"title" => esc_html__('Widgets', 'drone-media'),
				"desc" => wp_kses_data( __('You can setup widgets in this section in the menu "Appearance - Customize" or "Appearance - Widgets"', 'drone-media') )
							. '<br>'
							. wp_kses_data( __('Select the widget "ThemeREX Addons - Testimonials". You can also select any other widget, changing thus the purpose of this section', 'drone-media') ),
				"priority" => -60,
				"type" => "info",
				),
			'front_page_testimonials_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"priority" => 100,
				"type" => "info",
				),
			'front_page_testimonials_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_testimonials_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_testimonials',
				"refresh_wrapper" => true,
				"std" => '',
				"type" => "image"
				),
			'front_page_testimonials_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#fff' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_testimonials_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_testimonials_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data( __('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_testimonials_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_testimonials_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				)
		));
		return $options;
	}
}



// Add section 'Latest posts' to the Front Page option
if (!function_exists('drone_media_front_page_options_blog')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_blog' );
	function drone_media_front_page_options_blog($options) {
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'blog=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'blog' => esc_html__('Latest posts', 'drone-media')
																	)
																);
		$options = array_merge($options, array(

			// Front Page Sections - Blog (Latest posts)
			'sidebar-widgets-front_page_blog_widgets' => array(
				"title" => esc_html__('Latest posts', 'drone-media'),
				"desc" => '',
				"priority" => 70,
				"type" => "section",
				),
			'front_page_blog_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"priority" => -120,
				"type" => "info",
				),
			'front_page_blog_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 0,
				"refresh" => false,
				"priority" => -110,
				"type" => "checkbox"
				),
			'front_page_blog_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'medium',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"priority" => -100,
				"type" => "switch"
				),
			'front_page_blog_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"priority" => -90,
				"type" => "info",
				),
			'front_page_blog_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('Latest posts', 'drone-media')),
				"priority" => -80,
				"type" => "text"
				),
			'front_page_blog_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Latest posts"', 'drone-media')),
				"priority" => -70,
				"type" => "textarea"
				),
			'front_page_blog_widgets_info' => array(
				"title" => esc_html__('Widgets', 'drone-media'),
				"desc" => wp_kses_data( __('You can setup widgets in this section in the menu "Appearance - Customize" or "Appearance - Widgets"', 'drone-media') )
							. '<br>'
							. wp_kses_data( __('Select the widget "ThemeREX Addons - Blogger". You can also select any other widget, changing thus the purpose of this section', 'drone-media') ),
				"priority" => -60,
				"type" => "info",
				),
			'front_page_blog_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"priority" => 100,
				"type" => "info",
				),
			'front_page_blog_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? 'dark' : 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_blog_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_blog',
				"refresh_wrapper" => true,
				"std" => '',
				"type" => "image"
				),
			'front_page_blog_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#000' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_blog_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => DRONE_MEDIA_THEME_FREE ? 0.5 : 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_blog_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data( __('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_blog_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_blog_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				)
		));
		return $options;
	}
}



// Add section 'Subscribe' to the Front Page option
if (!function_exists('drone_media_front_page_options_subscribe')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_subscribe' );
	function drone_media_front_page_options_subscribe($options) {
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'subscribe=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'subscribe' => esc_html__('Subscribe', 'drone-media')
																	)
																);
		$options = array_merge($options, array(
	
			// Front Page Sections - Subscribe
			'front_page_subscribe' => array(
				"title" => esc_html__('Subscribe', 'drone-media'),
				"desc" => '',
				"priority" => 80,
				"type" => "section",
				),
			'front_page_subscribe_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_subscribe_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 0,
				"refresh" => false,
				"type" => "checkbox"
				),
			'front_page_subscribe_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'medium',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_subscribe_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_subscribe_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('Subscribe to our Newsletter', 'drone-media')),
				"type" => "text"
				),
			'front_page_subscribe_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Subscribe"', 'drone-media')),
				"type" => "textarea"
				),
			'front_page_subscribe_shortcode_info' => array(
				"title" => esc_html__('Shortcode', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_subscribe_shortcode' => array(
				"title" => esc_html__('Shortcode to insert Subscribe form', 'drone-media'),
				"desc" => wp_kses_data( __("Paste shortcode, generated with any subscribe plugin (for example, MailChimp)", 'drone-media') ),
				"refresh" => '.front_page_section_subscribe .front_page_section_subscribe_output',
				"std" => '',
				"type" => "text"
				),
			'front_page_subscribe_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_subscribe_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? 'dark' : 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_subscribe_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_subscribe',
				"refresh_wrapper" => true,
				"std" => DRONE_MEDIA_THEME_FREE ? drone_media_get_file_url('front-page/images/bg-subscribe.jpg') : '',
				"type" => "image"
				),
			'front_page_subscribe_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#000' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_subscribe_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => DRONE_MEDIA_THEME_FREE ? 0.5 : 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_subscribe_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data( __('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_subscribe_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_subscribe_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				)
		));
		return $options;
	}
}



// Add section 'Google map' to the Front Page option
if (!function_exists('drone_media_front_page_options_googlemap')) {
	if (!DRONE_MEDIA_THEME_FREE) add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_googlemap' );
	function drone_media_front_page_options_googlemap($options) {
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'googlemap=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'googlemap' => esc_html__('Google map', 'drone-media')
																	)
																);
		$options = array_merge($options, array(
	
			// Front Page Sections - Google map
			'sidebar-widgets-front_page_googlemap_widgets' => array(
				"title" => esc_html__('Google map', 'drone-media'),
				"desc" => '',
				"priority" => 90,
				"type" => "section",
				),
			'front_page_googlemap_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"priority" => -120,
				"type" => "info",
				),
			'front_page_googlemap_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 0,
				"refresh" => false,
				"priority" => -110,
				"type" => "checkbox"
				),
			'front_page_googlemap_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'medium',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"priority" => -100,
				"type" => "switch"
				),
			'front_page_googlemap_layout' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => wp_kses_data( __('Select layout of this section', 'drone-media') ),
				"std" => 'fullwidth',
				"options" => array(
									'fullwidth' => esc_html__('Fullwidth', 'drone-media'),
									'boxed' => esc_html__('Boxed', 'drone-media'),
									'columns' => esc_html__('2 columns', 'drone-media'),
									),
				"refresh" => '.front_page_section_googlemap',
				"refresh_wrapper" => true,
				"priority" => -95,
				"type" => "switch"
				),
			'front_page_googlemap_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"priority" => -90,
				"type" => "info",
				),
			'front_page_googlemap_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('Google map', 'drone-media')),
				"priority" => -80,
				"type" => "text"
				),
			'front_page_googlemap_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Google map"', 'drone-media')),
				"priority" => -70,
				"type" => "textarea"
				),
			'front_page_googlemap_content' => array(
				"title" => esc_html__('Content', 'drone-media'),
				"desc" => wp_kses_data( __("Any text at the left side of the map", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Google map"', 'drone-media')),
				"priority" => -65,
				"type" => "text_editor"
				),
			'front_page_googlemap_widgets_info' => array(
				"title" => esc_html__('Widgets', 'drone-media'),
				"desc" => wp_kses_data( __('You can setup widgets in this section in the menu "Appearance - Customize" or "Appearance - Widgets"', 'drone-media') )
							. '<br>'
							. wp_kses_data( __('Select the widget "ThemeREX Addons - Google map". You can also select any other widget, changing thus the purpose of this section', 'drone-media') ),
				"priority" => -60,
				"type" => "info",
				),
			'front_page_googlemap_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"priority" => 100,
				"type" => "info",
				),
			'front_page_googlemap_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? 'dark' : 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_googlemap_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_googlemap',
				"refresh_wrapper" => true,
				"std" => DRONE_MEDIA_THEME_FREE ? drone_media_get_file_url('front-page/images/bg-googlemap.jpg') : '',
				"type" => "image"
				),
			'front_page_googlemap_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#000' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_googlemap_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => DRONE_MEDIA_THEME_FREE ? 0.5 : 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_googlemap_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data( __('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_googlemap_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_googlemap_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				)
		));
		return $options;
	}
}



// Add section 'Contact Us' to the Front Page option
if (!function_exists('drone_media_front_page_options_contacts')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_contacts' );
	function drone_media_front_page_options_contacts($options) {
		$options['front_page_sections']['std'] .= (!empty($options['front_page_sections']['std']) ? '|' : '') . 'contacts=1';
		$options['front_page_sections']['options'] = array_merge($options['front_page_sections']['options'], 
																array(
																	'contacts' => esc_html__('Contact Us', 'drone-media')
																	)
																);
		$options = array_merge($options, array(
	
			// Front Page Sections - Contact Us
			'sidebar-widgets-front_page_contacts_widgets' => array(
				"title" => esc_html__('Contact Us', 'drone-media'),
				"desc" => '',
				"priority" => 100,
				"type" => "section",
				),
			'front_page_contacts_layout_info' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_contacts_fullheight' => array(
				"title" => esc_html__('Full height', 'drone-media'),
				"desc" => wp_kses_data( __('Stretch this section to the window height', 'drone-media') ),
				"std" => 0,
				"refresh" => false,
				"type" => "checkbox"
				),
			'front_page_contacts_paddings' => array(
				"title" => esc_html__('Paddings', 'drone-media'),
				"desc" => wp_kses_data( __('Select paddings inside this section', 'drone-media') ),
				"std" => 'medium',
				"options" => drone_media_get_list_paddings(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_contacts_layout' => array(
				"title" => esc_html__('Layout', 'drone-media'),
				"desc" => wp_kses_data( __('Select layout of this section', 'drone-media') ),
				"std" => 'columns',
				"options" => array(
									'boxed' => esc_html__('Boxed', 'drone-media'),
									'columns' => esc_html__('2 columns', 'drone-media'),
									),
				"refresh" => '.front_page_section_contacts',
				"refresh_wrapper" => true,
				"type" => "switch"
				),
			'front_page_contacts_heading_info' => array(
				"title" => esc_html__('Title', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_contacts_caption' => array(
				"title" => esc_html__('Section title', 'drone-media'),
				"desc" => '',
				"refresh" => false,
				"std" => wp_kses_data(__('Contact Us', 'drone-media')),
				"type" => "text"
				),
			'front_page_contacts_description' => array(
				"title" => esc_html__('Description', 'drone-media'),
				"desc" => wp_kses_data( __("Short description after the section's title", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses_data(__('This text can be changed in the section "Contact Us"', 'drone-media')),
				"type" => "textarea"
				),
			'front_page_contacts_content' => array(
				"title" => esc_html__('Content', 'drone-media'),
				"desc" => wp_kses_data( __("Any text at the left side of the form", 'drone-media') ),
				"refresh" => false,
				"std" => wp_kses(__('<h5><span class="icon-home-2"> </span>Find us at the office:</h5><p>500, Lorem Street,<br />Chicago, IL, 55030<br />Mon - Fri, 09:00 - 18:00</p><h5> <span class="icon-mobile-light"> </span>Give us a call:</h5><p>Michael Jordan<br />+40 (123) 456-78-90<br />Mon - Fri, 08:00 - 22:00</p>', 'drone-media'), 'drone_media_kses_content'),
				"type" => "text_editor"
				),
			'front_page_contacts_shortcode_info' => array(
				"title" => esc_html__('Shortcode', 'drone-media'),
				"desc" => '',
				"type" => "info",
				),
			'front_page_contacts_shortcode' => array(
				"title" => esc_html__('Shortcode with contact form', 'drone-media'),
				"desc" => wp_kses_data( __('Paste shortcode, generated with any form plugin (for example, Contacts Form 7). You can also paste any other shortcodes, changing thus the purpose of this section', 'drone-media') ),
				"refresh" => '.front_page_section_contacts .front_page_section_contacts_output',
				"std" => '',
				"type" => "text"
				),
			'front_page_contacts_color_info' => array(
				"title" => esc_html__('Colors and images', 'drone-media'),
				"desc" => '',
				"priority" => 100,
				"type" => "info",
				),
			'front_page_contacts_scheme' => array(
				"title" => esc_html__('Color scheme', 'drone-media'),
				"desc" => wp_kses_data( __('Color scheme for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? 'dark' : 'inherit',
				"options" => array(),
				"refresh" => false,
				"type" => "switch"
				),
			'front_page_contacts_bg_image' => array(
				"title" => esc_html__('Background image', 'drone-media'),
				"desc" => wp_kses_data( __('Select or upload background image for this section', 'drone-media') ),
				"refresh" => '.front_page_section_contacts',
				"refresh_wrapper" => true,
				"std" => '',
				"type" => "image"
				),
			'front_page_contacts_bg_color' => array(
				"title" => esc_html__('Background color', 'drone-media'),
				"desc" => wp_kses_data( __('Background color for this section', 'drone-media') ),
				"std" => DRONE_MEDIA_THEME_FREE ? '#000' : '',
				"refresh" => false,
				"type" => "color"
				),
			'front_page_contacts_bg_mask' => array(
				"title" => esc_html__('Background mask', 'drone-media'),
				"desc" => wp_kses_data( __('Use Background color as section mask with specified opacity. If 0 - mask is not being used', 'drone-media') ),
				"max" => 1,
				"step" => 0.1,
				"std" => DRONE_MEDIA_THEME_FREE ? 0.5 : 1,
				"refresh" => false,
				"type" => "slider"
				),
			'front_page_contacts_anchor_info' => array(
				"title" => esc_html__('Anchor', 'drone-media'),
				"desc" => wp_kses_data( __('You can select icon and/or specify a text to create anchor for this section and show it in the side menu (if selected in the section "Header - Menu").', 'drone-media'))
							. '<br>'
							. wp_kses_data(__('Attention! Anchors available only if plugin "ThemeREX Addons is installed and activated!', 'drone-media')),
				"type" => "info",
				),
			'front_page_contacts_anchor_icon' => array(
				"title" => esc_html__('Anchor icon', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "icon"
				),
			'front_page_contacts_anchor_text' => array(
				"title" => esc_html__('Anchor text', 'drone-media'),
				"desc" => '',
				"std" => '',
				"type" => "text"
				)
		));
		return $options;
	}
}

// Add 'active_callback' to all Front Page options
if (!function_exists('drone_media_front_page_options_add_active_callback')) {
	add_filter( 'drone_media_filter_front_page_options', 'drone_media_front_page_options_add_active_callback', 1000 );
	function drone_media_front_page_options_add_active_callback($options) {
		foreach ($options as $k=>$v) {
			if (substr($k, 0, 11)=='front_page_')
				$options[$k]['active_callback'] = 'drone_media_front_page_check';
		}
		return $options;
	}
}

// Callback to show/hide Front Page sections in the WP Customizer
if (!function_exists('drone_media_front_page_check')) {
	function drone_media_front_page_check($control=null) {
		return is_front_page() && !is_home();
	}
}

// Add Front Page specific items to the list of sidebars
//------------------------------------------------------------------------
if ( !function_exists( 'drone_media_front_page_sidebars' ) ) {
	function drone_media_front_page_sidebars($list=array()) {
		$list['front_page_features_widgets'] = array(
							'name' => esc_html__('Front Page section "Features"', 'drone-media'),
							'description' => esc_html__('Widgets to be shown only in the section "Features" on the front page', 'drone-media'),
							'front_page_section' => true
							);
		$list['front_page_team_widgets'] = array(
							'name' => esc_html__('Front Page section "Team members"', 'drone-media'),
							'description' => esc_html__('Widgets to be shown only in the section "Team members" on the front page', 'drone-media'),
							'front_page_section' => true
							);
		$list['front_page_testimonials_widgets'] = array(
							'name' => esc_html__('Front Page section "Testimonials"', 'drone-media'),
							'description' => esc_html__('Widgets to be shown only in the section "Testimonials" on the front page', 'drone-media'),
							'front_page_section' => true
							);
		$list['front_page_blog_widgets'] = array(
							'name' => esc_html__('Front Page section "Latest Posts"', 'drone-media'),
							'description' => esc_html__('Widgets to be shown only in the section "Latest Posts" on the front page', 'drone-media'),
							'front_page_section' => true
							);
		if (!DRONE_MEDIA_THEME_FREE) {
			$list['front_page_googlemap_widgets'] = array(
							'name' => esc_html__('Front Page section "Google map"', 'drone-media'),
							'description' => esc_html__('Widgets to be shown only in the section "Google map" on the front page', 'drone-media'),
							'front_page_section' => true
							);
		}
		return $list;
	}
}




//====================================================================
//== Refresh partials on the Front Page
//====================================================================


// Partial refresh whole section
if (!function_exists('drone_media_customizer_partial_refresh_section')) {
	function drone_media_customizer_partial_refresh_section($section) {
		ob_start();
		get_template_part("front-page/section-{$section}");
		$output = ob_get_contents();
		ob_end_clean();
		return drone_media_customizer_partial_refresh_add_init_script($output, $section);
	}
}


// Add init script to the section's html output
if (!function_exists('drone_media_customizer_partial_refresh_add_init_script')) {
	function drone_media_customizer_partial_refresh_add_init_script($output, $section) {
		return sprintf("%1$s<%2$s>
						setTimeout(function() {
							jQuery(document).trigger('action.init_hidden_elements', [jQuery('.front_page_section_{$section}')]);
						}, 500);
					</%2$s>", $output, 'script');
	}
}


// Section 'Front Page - Title'
//--------------------------------------------------------------------

// Button1 link
if (!function_exists('drone_media_customizer_partial_refresh_front_page_title_button1_link')) {
	function drone_media_customizer_partial_refresh_front_page_title_button1_link() {
		return drone_media_get_theme_option('front_page_title_button1_link')!=''
				? '<a href="'.esc_url(drone_media_get_theme_option('front_page_title_button1_link')).'" class="theme_button front_page_section_button front_page_section_title_button1">'
					. esc_html(drone_media_get_theme_option('front_page_title_button1_caption'))
					. '</a>'
				: '';
	}
}

// Button2 link
if (!function_exists('drone_media_customizer_partial_refresh_front_page_title_button2_link')) {
	function drone_media_customizer_partial_refresh_front_page_title_button2_link() {
		return drone_media_get_theme_option('front_page_title_button2_link')!=''
				? '<a href="'.esc_url(drone_media_get_theme_option('front_page_title_button2_link')).'" class="theme_button color_style_link2 front_page_section_button front_page_section_title_button2">'
					. esc_html(drone_media_get_theme_option('front_page_title_button2_caption'))
					. '</a>'
				: '';
	}
}

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_title_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_title_bg_image() {
		return drone_media_customizer_partial_refresh_section('title');
	}
}


// Section 'Front Page - About'
//--------------------------------------------------------------------

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_about_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_about_bg_image() {
		return drone_media_customizer_partial_refresh_section('about');
	}
}


// Section 'Front Page - Features'
//--------------------------------------------------------------------

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_features_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_features_bg_image() {
		return drone_media_customizer_partial_refresh_section('features');
	}
}


// Section 'Front Page - Team'
//--------------------------------------------------------------------

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_team_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_team_bg_image() {
		return drone_media_customizer_partial_refresh_section('team');
	}
}


// Section 'Front Page - Testimonials'
//--------------------------------------------------------------------

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_testimonials_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_testimonials_bg_image() {
		return drone_media_customizer_partial_refresh_section('testimonials');
	}
}


// Section 'Front Page - Latest posts'
//--------------------------------------------------------------------

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_blog_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_blog_bg_image() {
		return drone_media_customizer_partial_refresh_section('blog');
	}
}


// Section 'Front Page - Subscribe'
//--------------------------------------------------------------------

// Shortcode changed
if (!function_exists('drone_media_customizer_partial_refresh_front_page_subscribe_shortcode')) {
	function drone_media_customizer_partial_refresh_front_page_subscribe_shortcode() {
		$drone_media_sc = drone_media_get_theme_option('front_page_subscribe_shortcode');
		return !empty($drone_media_sc) ? do_shortcode($drone_media_sc) : '';
	}
}

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_subscribe_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_subscribe_bg_image() {
		return drone_media_customizer_partial_refresh_section('subscribe');
	}
}


// Section 'Front Page - Google map'
//--------------------------------------------------------------------

// Layout
if (!function_exists('drone_media_customizer_partial_refresh_front_page_googlemap_layout')) {
	function drone_media_customizer_partial_refresh_front_page_googlemap_layout() {
		return drone_media_customizer_partial_refresh_section('googlemap');
	}
}

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_googlemap_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_googlemap_bg_image() {
		return drone_media_customizer_partial_refresh_section('googlemap');
	}
}


// Section 'Front Page - Contact Us'
//--------------------------------------------------------------------

// Layout
if (!function_exists('drone_media_customizer_partial_refresh_front_page_contacts_layout')) {
	function drone_media_customizer_partial_refresh_front_page_contacts_layout() {
		return drone_media_customizer_partial_refresh_section('contacts');
	}
}

// Shortcode changed
if (!function_exists('drone_media_customizer_partial_refresh_front_page_contacts_shortcode')) {
	function drone_media_customizer_partial_refresh_front_page_contacts_shortcode() {
		$drone_media_sc = drone_media_get_theme_option('front_page_contacts_shortcode');
		return !empty($drone_media_sc) ? do_shortcode($drone_media_sc) : '';
	}
}

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_contacts_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_contacts_bg_image() {
		return drone_media_customizer_partial_refresh_section('contacts');
	}
}


// Section 'Front Page - WooCommerce'
//--------------------------------------------------------------------

// Background image
if (!function_exists('drone_media_customizer_partial_refresh_front_page_woocommerce_bg_image')) {
	function drone_media_customizer_partial_refresh_front_page_woocommerce_bg_image() {
		return drone_media_customizer_partial_refresh_section('woocommerce');
	}
}
?>