<?php
/**
* Bottom Footer Options for Astra Theme.
*
* @package Astra
* @author Astra
* @copyright Copyright (c) 2020, Astra
* @link https://wpastra.com/
* @since Astra 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Astra_Footer_Layout_Configs' ) ) {
/**
* Register Footer Layout Configurations.
*/
class Astra_Footer_Layout_Configs extends Astra_Customizer_Config_Base {
/**
* Register Footer Layout 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: Footer Bar Layout
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'type' => 'control',
'control' => 'ast-radio-image',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_choices' ),
'default' => astra_get_option( 'footer-sml-layout' ),
'section' => 'section-footer-small',
'priority' => 5,
'title' => __( 'Layout', 'astra' ),
'choices' => array(
'disabled' => array(
'label' => __( 'Disabled', 'astra' ),
'path' => Astra_Builder_UI_Controller::fetch_svg_icon( 'disabled' ),
),
'footer-sml-layout-1' => array(
'label' => __( 'Footer Bar Layout 1', 'astra' ),
'path' => Astra_Builder_UI_Controller::fetch_svg_icon( 'footer-layout-1' ),
),
'footer-sml-layout-2' => array(
'label' => __( 'Footer Bar Layout 2', 'astra' ),
'path' => Astra_Builder_UI_Controller::fetch_svg_icon( 'footer-layout-2' ),
),
),
'partial' => array(
'selector' => '.ast-small-footer',
'container_inclusive' => false,
),
),
/**
* Section: Section 1
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-sml-section-1]',
'control' => 'ast-selector',
'default' => astra_get_option( 'footer-sml-section-1' ),
'type' => 'control',
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
'section' => 'section-footer-small',
'priority' => 15,
'title' => __( 'Section 1', 'astra' ),
'divider' => array( 'ast_class' => 'ast-top-divider' ),
'choices' => array(
'' => __( 'None', 'astra' ),
'custom' => __( 'Text', 'astra' ),
'widget' => __( 'Widget', 'astra' ),
'menu' => __( 'Footer Menu', 'astra' ),
),
'partial' => array(
'selector' => '.ast-small-footer .ast-container .ast-footer-widget-1-area .ast-no-widget-row, .ast-small-footer .ast-container .ast-small-footer-section-1 .footer-primary-navigation .nav-menu',
'container_inclusive' => false,
),
'responsive' => false,
'renderAs' => 'text',
),
/**
* Option: Section 1 Custom Text
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-sml-section-1-credit]',
'default' => astra_get_option( 'footer-sml-section-1-credit' ),
'type' => 'control',
'control' => 'textarea',
'transport' => 'postMessage',
'section' => 'section-footer-small',
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-section-1]',
'operator' => '==',
'value' => array( 'custom' ),
),
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
'priority' => 20,
'title' => __( 'Section 1 Custom Text', 'astra' ),
'choices' => array(
'' => __( 'None', 'astra' ),
'custom' => __( 'Custom Text', 'astra' ),
'widget' => __( 'Widget', 'astra' ),
'menu' => __( 'Footer Menu', 'astra' ),
),
'partial' => array(
'selector' => '.ast-small-footer .ast-container .ast-small-footer-section.ast-small-footer-section-1:has(> .ast-footer-site-title)',
'container_inclusive' => false,
'render_callback' => 'Astra_Customizer_Partials::render_footer_sml_section_1_credit',
),
),
/**
* Option: Section 2
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-sml-section-2]',
'type' => 'control',
'control' => 'ast-selector',
'default' => astra_get_option( 'footer-sml-section-2' ),
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
'section' => 'section-footer-small',
'priority' => 25,
'title' => __( 'Section 2', 'astra' ),
'choices' => array(
'' => __( 'None', 'astra' ),
'custom' => __( 'Text', 'astra' ),
'widget' => __( 'Widget', 'astra' ),
'menu' => __( 'Footer Menu', 'astra' ),
),
'partial' => array(
'selector' => '.ast-small-footer .ast-container .ast-footer-widget-2-area .ast-no-widget-row, .ast-small-footer .ast-container .ast-small-footer-section-2 .footer-primary-navigation .nav-menu',
'container_inclusive' => false,
),
'responsive' => false,
'renderAs' => 'text',
),
/**
* Option: Section 2 Custom Text
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-sml-section-2-credit]',
'type' => 'control',
'control' => 'textarea',
'transport' => 'postMessage',
'default' => astra_get_option( 'footer-sml-section-2-credit' ),
'section' => 'section-footer-small',
'priority' => 30,
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-section-2]',
'operator' => '==',
'value' => 'custom',
),
),
'title' => __( 'Section 2 Custom Text', 'astra' ),
'partial' => array(
'selector' => '.ast-small-footer-section-2',
'container_inclusive' => false,
'render_callback' => 'Astra_Customizer_Partials::render_footer_sml_section_2_credit',
),
'partial' => array(
'selector' => '.ast-small-footer .ast-container .ast-small-footer-section.ast-small-footer-section-2:has(> .ast-footer-site-title)',
'container_inclusive' => false,
),
),
/**
* Option: Footer Top Border
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-sml-divider]',
'type' => 'control',
'control' => 'ast-slider',
'default' => astra_get_option( 'footer-sml-divider' ),
'section' => 'section-footer-small',
'priority' => 40,
'suffix' => 'px',
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
'title' => __( 'Border Size', 'astra' ),
'transport' => 'postMessage',
'input_attrs' => array(
'min' => 0,
'step' => 1,
'max' => 600,
),
),
/**
* Option: Footer Top Border Color
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-sml-divider-color]',
'section' => 'section-footer-small',
'default' => astra_get_option( 'footer-sml-divider-color', '#7a7a7a' ),
'type' => 'control',
'control' => 'ast-color',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ),
'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-divider]',
'operator' => '>=',
'value' => 1,
),
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
'priority' => 45,
'title' => __( 'Border Color', 'astra' ),
'transport' => 'postMessage',
),
/**
* Option: Footer Bar Content Group
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-bar-background-group]',
'default' => astra_get_option( 'footer-bar-background-group' ),
'type' => 'control',
'control' => 'ast-settings-group',
'title' => __( 'Background Color', 'astra' ),
'section' => 'section-footer-small',
'transport' => 'postMessage',
'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
'priority' => 47,
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
),
/**
* Option: Footer Bar Content Group
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-bar-content-group]',
'default' => astra_get_option( 'footer-bar-content-group' ),
'type' => 'control',
'control' => 'ast-settings-group',
'title' => __( 'Content Colors', 'astra' ),
'section' => 'section-footer-small',
'transport' => 'postMessage',
'priority' => 47,
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
),
/**
* Option: Footer Bar Content Group
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-bar-link-color-group]',
'default' => astra_get_option( 'footer-bar-link-color-group' ),
'type' => 'control',
'control' => 'ast-color-group',
'title' => __( 'Link Color', 'astra' ),
'section' => 'section-footer-small',
'transport' => 'postMessage',
'priority' => 47,
'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
),
/**
* Option: Header Width
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-layout-width]',
'type' => 'control',
'control' => 'ast-selector',
'default' => astra_get_option( 'footer-layout-width' ),
'section' => 'section-footer-small',
'divider' => array( 'ast_class' => 'ast-top-divider ast-bottom-divider' ),
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[site-layout]',
'operator' => '!=',
'value' => 'ast-box-layout',
),
array(
'setting' => ASTRA_THEME_SETTINGS . '[site-layout]',
'operator' => '!=',
'value' => 'ast-fluid-width-layout',
),
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-sml-layout]',
'operator' => '!=',
'value' => 'disabled',
),
),
'priority' => 35,
'title' => __( 'Width', 'astra' ),
'choices' => array(
'full' => __( 'Full Width', 'astra' ),
'content' => __( 'Content Width', 'astra' ),
),
'responsive' => false,
'renderAs' => 'text',
),
/**
* Option: Footer Top Border
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-adv-border-width]',
'type' => 'control',
'control' => 'ast-slider',
'transport' => 'postMessage',
'section' => 'section-footer-adv',
'default' => astra_get_option( 'footer-adv-border-width' ),
'priority' => 40,
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-adv]',
'operator' => '!=',
'value' => 'disabled',
),
),
'suffix' => 'px',
'title' => __( 'Top Border Size', 'astra' ),
'input_attrs' => array(
'min' => 0,
'step' => 1,
'max' => 600,
),
),
/**
* Option: Footer Top Border Color
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-adv-border-color]',
'section' => 'section-footer-adv',
'title' => __( 'Top Border Color', 'astra' ),
'type' => 'control',
'transport' => 'postMessage',
'control' => 'ast-color',
'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ),
'default' => astra_get_option( 'footer-adv-border-color' ),
'context' => array(
Astra_Builder_Helper::$general_tab_config,
array(
'setting' => ASTRA_THEME_SETTINGS . '[footer-adv]',
'operator' => '!=',
'value' => 'disabled',
),
),
'priority' => 45,
),
);
$configurations = array_merge( $configurations, $_configs );
// Learn More link if Astra Pro is not activated.
if ( ! defined( 'ASTRA_EXT_VER' ) || ( defined( 'ASTRA_EXT_VER' ) && false === Astra_Ext_Extension::is_active( 'advanced-footer' ) ) ) {
$config = array(
/**
* Option: Footer Widgets Layout Layout
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[footer-adv]',
'type' => 'control',
'priority' => 0,
'control' => 'ast-radio-image',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_choices' ),
'default' => astra_get_option( 'footer-adv' ),
'title' => __( 'Layout', 'astra' ),
'section' => 'section-footer-adv',
'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
'choices' => array(
'disabled' => array(
'label' => __( 'Disable', 'astra' ),
'path' => Astra_Builder_UI_Controller::fetch_svg_icon( 'disabled' ),
),
'layout-4' => array(
'label' => __( 'Layout 4', 'astra' ),
'path' => Astra_Builder_UI_Controller::fetch_svg_icon( 'footer-layout-4' ),
),
),
'partial' => array(
'selector' => '.footer-adv .ast-container',
'container_inclusive' => false,
),
),
/**
* Option: Learn More about Footer Widget
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[ast-footer-widget-more-feature-description]',
'type' => 'control',
'control' => 'ast-description',
'section' => 'section-footer-adv',
'priority' => 999,
'label' => '',
'help' => '<p>' . __( 'More Options Available in Astra Pro!', 'astra' ) . '</p><a href="' . astra_get_pro_url( 'https://wpastra.com/pro/', 'customizer', 'learn-more', 'upgrade-to-pro' ) . '" class="button button-secondary" target="_blank" rel="noopener">' . __( 'Learn More', 'astra' ) . '</a>',
'settings' => array(),
),
);
$configurations = array_merge( $configurations, $config );
}
return $configurations;
}
}
}
new Astra_Footer_Layout_Configs();