blob: e067724616804c8013d373a09f71fa147738381d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?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;
}
/**
* Social Icons Customizer Configurations.
*
* @since 3.0.0
*/
class Astra_Customizer_Footer_Social_Icons_Configs extends Astra_Customizer_Config_Base {
/**
* Social Icons 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_Social_Icon_Component_Configs::register_configuration( $configurations, 'footer', 'section-fb-social-icons-' );
return $configurations;
}
}
/**
* Kicking this off by creating object of this class.
*/
new Astra_Customizer_Footer_Social_Icons_Configs();
|