72 lines
2.2 KiB
PHP
72 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Mega Menu Options configurations.
|
|
*
|
|
* @package Astra Addon
|
|
* @link https://www.brainstormforce.com
|
|
* @since 1.6.0
|
|
*/
|
|
|
|
// 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_Nav_Menu_Primary_Header_Layout' ) ) {
|
|
|
|
/**
|
|
* Register Mega Menu Customizer Configurations.
|
|
*/
|
|
// @codingStandardsIgnoreStart
|
|
class Astra_Nav_Menu_Primary_Header_Layout extends Astra_Customizer_Config_Base {
|
|
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound
|
|
// @codingStandardsIgnoreEnd
|
|
|
|
/**
|
|
* Register Mega Menu Customizer Configurations.
|
|
*
|
|
* @param Array $configurations Astra Customizer Configurations.
|
|
* @param WP_Customize_Manager $wp_customize instance of WP_Customize_Manager.
|
|
* @since 1.6.0
|
|
* @return Array Astra Customizer Configurations with updated configurations.
|
|
*/
|
|
public function register_configuration( $configurations, $wp_customize ) {
|
|
|
|
$_configs = array(
|
|
|
|
// Option - Megamenu Heading Space.
|
|
array(
|
|
'name' => ASTRA_THEME_SETTINGS . '[primary-header-megamenu-heading-space]',
|
|
'default' => astra_get_option( 'primary-header-megamenu-heading-space' ),
|
|
'type' => 'control',
|
|
'transport' => 'postMessage',
|
|
'control' => 'ast-responsive-spacing',
|
|
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ),
|
|
'priority' => 125,
|
|
'title' => __( 'Megamenu Heading Space', 'astra-addon' ),
|
|
'linked_choices' => true,
|
|
'unit_choices' => array( 'px', 'em', '%' ),
|
|
'section' => 'section-primary-menu',
|
|
'choices' => array(
|
|
'top' => __( 'Top', 'astra-addon' ),
|
|
'right' => __( 'Right', 'astra-addon' ),
|
|
'bottom' => __( 'Bottom', 'astra-addon' ),
|
|
'left' => __( 'Left', 'astra-addon' ),
|
|
),
|
|
),
|
|
);
|
|
|
|
$configurations = array_merge( $configurations, $_configs );
|
|
|
|
return $configurations;
|
|
}
|
|
}
|
|
}
|
|
|
|
new Astra_Nav_Menu_Primary_Header_Layout();
|
|
|