?AlkantarClanX12

Your IP : 216.73.217.134


Current Path : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/404/dashboard/admin/
Upload File :
Current File : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/404/dashboard/admin/404-options.php

<?php

if ( ! function_exists( 'drew_core_add_404_page_options' ) ) {
	/**
	 * Function that add general options for this module
	 */
	function drew_core_add_404_page_options() {
		$qode_framework = qode_framework_get_framework_root();

		$page = $qode_framework->add_options_page(
			array(
				'scope'       => DREW_CORE_OPTIONS_NAME,
				'type'        => 'admin',
				'slug'        => '404',
				'icon'        => 'fa fa-book',
				'title'       => esc_html__( '404', 'drew-core' ),
				'description' => esc_html__( 'Global 404 Page Options', 'drew-core' ),
			)
		);

		if ( $page ) {
			$page->add_field_element(
				array(
					'field_type'    => 'yesno',
					'name'          => 'qodef_enable_404_page_title',
					'title'         => esc_html__( 'Enable Page Title', 'drew-core' ),
					'description'   => esc_html__( 'Use this option to enable/disable page title on 404 page', 'drew-core' ),
					'default_value' => 'no',
				)
			);

			$page->add_field_element(
				array(
					'field_type'    => 'yesno',
					'name'          => 'qodef_enable_404_page_footer',
					'title'         => esc_html__( 'Enable Page Footer', 'drew-core' ),
					'description'   => esc_html__( 'Use this option to enable/disable page footer on 404 page', 'drew-core' ),
					'default_value' => 'yes',
				)
			);

			$page->add_field_element(
				array(
					'field_type'  => 'color',
					'name'        => 'qodef_404_page_background_color',
					'title'       => esc_html__( 'Background Color', 'drew-core' ),
					'description' => esc_html__( 'Enter 404 page area background color', 'drew-core' ),
				)
			);

			$page->add_field_element(
				array(
					'field_type'  => 'image',
					'name'        => 'qodef_404_page_background_image',
					'title'       => esc_html__( 'Background Image', 'drew-core' ),
					'description' => esc_html__( 'Enter 404 page area background image', 'drew-core' ),
				)
			);

			$page->add_field_element(
				array(
					'field_type' => 'text',
					'name'       => 'qodef_404_page_title',
					'title'      => esc_html__( 'Title Label', 'drew-core' ),
				)
			);

			$page->add_field_element(
				array(
					'field_type' => 'color',
					'name'       => 'qodef_404_page_title_color',
					'title'      => esc_html__( 'Title Color', 'drew-core' ),
				)
			);

			$page->add_field_element(
				array(
					'field_type' => 'text',
					'name'       => 'qodef_404_page_text',
					'title'      => esc_html__( 'Text Label', 'drew-core' ),
				)
			);

			$page->add_field_element(
				array(
					'field_type' => 'color',
					'name'       => 'qodef_404_page_text_color',
					'title'      => esc_html__( 'Text Color', 'drew-core' ),
				)
			);

			$page->add_field_element(
				array(
					'field_type' => 'text',
					'name'       => 'qodef_404_page_button_text',
					'title'      => esc_html__( 'Button Text', 'drew-core' ),
				)
			);

			// Hook to include additional options after module options
			do_action( 'drew_core_action_after_404_page_options_map', $page );
		}
	}

	add_action( 'drew_core_action_default_options_init', 'drew_core_add_404_page_options', drew_core_get_admin_options_map_position( '404' ) );
}