89 lines
2.2 KiB
PHP
89 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Advanced Header - Panels & Sections
|
|
*
|
|
* @package Astra Addon
|
|
*/
|
|
|
|
// Block direct access to the file.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
// Bail if Customizer config base class does not exist.
|
|
if ( ! class_exists( 'Astra_Customizer_Config_Base' ) ) {
|
|
return;
|
|
}
|
|
|
|
if ( ! class_exists( 'Astra_Header_Section_Panels_Configs' ) ) {
|
|
|
|
/**
|
|
* Register Header Layout Customizer Configurations.
|
|
*/
|
|
// @codingStandardsIgnoreStart
|
|
class Astra_Header_Section_Panels_Configs extends Astra_Customizer_Config_Base {
|
|
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound
|
|
// @codingStandardsIgnoreEnd
|
|
|
|
/**
|
|
* Register Header Layout Customizer Configurations.
|
|
*
|
|
* @param Array $configurations Astra Customizer Configurations.
|
|
* @param WP_Customize_Manager $wp_customize instance of WP_Customize_Manager.
|
|
* @since 1.4.3
|
|
* @return Array Astra Customizer Configurations with updated configurations.
|
|
*/
|
|
public function register_configuration( $configurations, $wp_customize ) {
|
|
|
|
$_config = array(
|
|
|
|
array(
|
|
'name' => 'section-below-header',
|
|
'type' => 'section',
|
|
'title' => __( 'Below Header', 'astra-addon' ),
|
|
'panel' => 'panel-header-group',
|
|
'priority' => 30,
|
|
),
|
|
|
|
array(
|
|
'name' => 'section-above-header',
|
|
'type' => 'section',
|
|
'title' => __( 'Above Header', 'astra-addon' ),
|
|
'panel' => 'panel-header-group',
|
|
'priority' => 20,
|
|
),
|
|
|
|
/*
|
|
* Update the Above Header section
|
|
*
|
|
* @since 1.4.0
|
|
*/
|
|
array(
|
|
'name' => 'section-mobile-header-above-header',
|
|
'type' => 'section',
|
|
'priority' => 5,
|
|
'title' => __( 'Above Header', 'astra-addon' ),
|
|
'section' => 'section-mobile-header',
|
|
),
|
|
|
|
/*
|
|
* Update the Below Header section
|
|
*
|
|
* @since 1.4.0
|
|
*/
|
|
array(
|
|
'name' => 'section-mobile-header-below-header',
|
|
'priority' => 15,
|
|
'type' => 'section',
|
|
'title' => __( 'Below Header', 'astra-addon' ),
|
|
'section' => 'section-mobile-header',
|
|
),
|
|
);
|
|
|
|
return array_merge( $configurations, $_config );
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
new Astra_Header_Section_Panels_Configs();
|