Astra_Customizer_Adv_Search_Below_Header::register_configuration( Array $configurations, WP_Customize_Manager $wp_customize )
Register General Customizer Configurations.
Description
Parameters
- $configurations
-
(Array) (Required) Astra Customizer Configurations.
- $wp_customize
-
(WP_Customize_Manager) (Required) instance of WP_Customize_Manager.
Return
(Array) Astra Customizer Configurations with updated configurations.
Source
File: addons/advanced-search/classes/sections/class-astra-customizer-adv-search-below-header.php
public function register_configuration( $configurations, $wp_customize ) {
$_configs = array(
// Option: Below Header Section 1 Search Style.
array(
'name' => ASTRA_THEME_SETTINGS . '[below-header-section-1-search-box-type]',
'default' => astra_get_option( 'below-header-section-1-search-box-type' ),
'section' => 'section-below-header',
'priority' => 26,
'title' => __( 'Search Style', 'astra-addon' ),
'type' => 'control',
'control' => 'ast-select',
'choices' => array(
'slide-search' => __( 'Slide', 'astra-addon' ),
'full-screen' => __( 'Full Screen', 'astra-addon' ),
'header-cover' => __( 'Header Cover', 'astra-addon' ),
'search-box' => __( 'Search Box', 'astra-addon' ),
),
'context' => array(
( true === astra_addon_builder_helper()->is_header_footer_builder_active ) ?
astra_addon_builder_helper()->design_tab_config : astra_addon_builder_helper()->general_tab_config,
'relation' => 'AND',
array(
'setting' => ASTRA_THEME_SETTINGS . '[below-header-layout]',
'operator' => '!=',
'value' => 'disabled',
),
array(
'setting' => ASTRA_THEME_SETTINGS . '[below-header-section-1]',
'operator' => '==',
'value' => 'search',
),
),
),
// Option: Below Header Section 2 Search Style.
array(
'name' => ASTRA_THEME_SETTINGS . '[below-header-section-2-search-box-type]',
'default' => astra_get_option( 'below-header-section-2-search-box-type' ),
'section' => 'section-below-header',
'priority' => 46,
'title' => __( 'Search Style', 'astra-addon' ),
'type' => 'control',
'control' => 'ast-select',
'choices' => array(
'slide-search' => __( 'Slide', 'astra-addon' ),
'full-screen' => __( 'Full Screen', 'astra-addon' ),
'header-cover' => __( 'Header Cover', 'astra-addon' ),
'search-box' => __( 'Search Box', 'astra-addon' ),
),
'context' => array(
astra_addon_builder_helper()->general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[below-header-layout]',
'operator' => '==',
'value' => 'below-header-layout-1',
),
array(
'setting' => ASTRA_THEME_SETTINGS . '[below-header-section-2]',
'operator' => '==',
'value' => 'search',
),
),
),
);
return array_merge( $configurations, $_configs );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.4.8 | Introduced. |