summaryrefslogtreecommitdiff
path: root/inc/customizer/configurations/colors-background/class-astra-footer-colors-configs.php
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2021-07-21 14:54:07 -0500
committerZach van Rijn <me@zv.io>2021-07-21 14:54:07 -0500
commit9d4123cee1867ee7199b06bdc92d40611f547ecc (patch)
tree6d864e2725242863afed1f8ba12d9c7a9bc63a69 /inc/customizer/configurations/colors-background/class-astra-footer-colors-configs.php
downloadblog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.gz
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.bz2
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.tar.xz
blog-ng-9d4123cee1867ee7199b06bdc92d40611f547ecc.zip
Initial unmodified import from Astra (Version: 3.6.5) @ /wp-content/themes/astra/.
Diffstat (limited to 'inc/customizer/configurations/colors-background/class-astra-footer-colors-configs.php')
-rw-r--r--inc/customizer/configurations/colors-background/class-astra-footer-colors-configs.php102
1 files changed, 102 insertions, 0 deletions
diff --git a/inc/customizer/configurations/colors-background/class-astra-footer-colors-configs.php b/inc/customizer/configurations/colors-background/class-astra-footer-colors-configs.php
new file mode 100644
index 0000000..9c0cf7f
--- /dev/null
+++ b/inc/customizer/configurations/colors-background/class-astra-footer-colors-configs.php
@@ -0,0 +1,102 @@
+<?php
+/**
+ * Styling Options for Astra Theme.
+ *
+ * @package Astra
+ * @author Astra
+ * @copyright Copyright (c) 2020, Astra
+ * @link https://wpastra.com/
+ * @since 1.4.3
+ */
+
+if ( ! defined( 'ABSPATH' ) ) {
+ exit;
+}
+
+if ( ! class_exists( 'Astra_Footer_Colors_Configs' ) ) {
+
+ /**
+ * Register Footer Color Configurations.
+ */
+ class Astra_Footer_Colors_Configs extends Astra_Customizer_Config_Base {
+
+ /**
+ * Register Footer Color 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 ) {
+ $_configs = array(
+
+ /**
+ * Option: Color
+ */
+ array(
+ 'name' => 'footer-color',
+ 'type' => 'sub-control',
+ 'priority' => 5,
+ 'parent' => ASTRA_THEME_SETTINGS . '[footer-bar-content-group]',
+ 'section' => 'section-footer-small',
+ 'control' => 'ast-color',
+ 'title' => __( 'Text Color', 'astra' ),
+ 'default' => astra_get_option( 'footer-color' ),
+ ),
+
+ /**
+ * Option: Link Color
+ */
+ array(
+ 'name' => 'footer-link-color',
+ 'type' => 'sub-control',
+ 'priority' => 6,
+ 'parent' => ASTRA_THEME_SETTINGS . '[footer-bar-link-color-group]',
+ 'section' => 'section-footer-small',
+ 'control' => 'ast-color',
+ 'default' => astra_get_option( 'footer-link-color' ),
+ 'title' => __( 'Normal', 'astra' ),
+ ),
+
+ /**
+ * Option: Link Hover Color
+ */
+ array(
+ 'name' => 'footer-link-h-color',
+ 'type' => 'sub-control',
+ 'priority' => 5,
+ 'parent' => ASTRA_THEME_SETTINGS . '[footer-bar-link-color-group]',
+ 'section' => 'section-footer-small',
+ 'control' => 'ast-color',
+ 'title' => __( 'Hover', 'astra' ),
+ 'default' => astra_get_option( 'section-footer-small' ),
+ ),
+
+ /**
+ * Option: Footer Background
+ */
+ array(
+ 'name' => 'footer-bg-obj',
+ 'type' => 'sub-control',
+ 'priority' => 7,
+ 'parent' => ASTRA_THEME_SETTINGS . '[footer-bar-background-group]',
+ 'section' => 'section-footer-small',
+ 'transport' => 'postMessage',
+ 'control' => 'ast-background',
+ 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_background_obj' ),
+ 'default' => astra_get_option( 'footer-bg-obj' ),
+ 'label' => __( 'Background', 'astra' ),
+ ),
+ );
+
+ $configurations = array_merge( $configurations, $_configs );
+
+ return $configurations;
+ }
+ }
+}
+
+new Astra_Footer_Colors_Configs();
+
+