47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Astra Theme Customizer Configuration Builder.
|
||
|
*
|
||
|
* @package astra-builder
|
||
|
* @author Astra
|
||
|
* @copyright Copyright (c) 2020, Astra
|
||
|
* @link https://wpastra.com/
|
||
|
* @since 3.0.0
|
||
|
*/
|
||
|
|
||
|
// No direct access, please.
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
if ( ! class_exists( 'Astra_Customizer_Config_Base' ) ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register Builder Customizer Configurations.
|
||
|
*
|
||
|
* @since 3.0.0
|
||
|
*/
|
||
|
class Astra_Footer_Button_Component_Configs extends Astra_Customizer_Config_Base {
|
||
|
|
||
|
/**
|
||
|
* Register Builder Customizer Configurations.
|
||
|
*
|
||
|
* @param Array $configurations Astra Customizer Configurations.
|
||
|
* @param WP_Customize_Manager $wp_customize instance of WP_Customize_Manager.
|
||
|
* @since 3.0.0
|
||
|
* @return Array Astra Customizer Configurations with updated configurations.
|
||
|
*/
|
||
|
public function register_configuration( $configurations, $wp_customize ) {
|
||
|
$configurations = astra_button_footer_configuration( $configurations );
|
||
|
return $configurations;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Kicking this off by creating object of this class.
|
||
|
*/
|
||
|
|
||
|
new Astra_Footer_Button_Component_Configs();
|