Astra_Customizer_Colors_Archive
Description
Source
File: addons/colors-and-background/classes/sections/class-astra-customizer-colors-archive.php
class Astra_Customizer_Colors_Archive extends Astra_Customizer_Config_Base {
/**
* Register General Customizer 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 ) {
$content_colors_config_title = __( 'Content', 'astra-addon' );
if ( true === astra_addon_builder_helper()->is_header_footer_builder_active ) {
$content_colors_config_title = __( 'Content Color', 'astra-addon' );
}
$_configs = array(
/**
* Option: Blog / Archive Color Group
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'default' => astra_get_option( 'blog-content-color-group' ),
'type' => 'control',
'control' => 'ast-settings-group',
'title' => $content_colors_config_title,
'section' => 'section-blog',
'transport' => 'postMessage',
'priority' => 130,
'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
'context' => ( true === astra_addon_builder_helper()->is_header_footer_builder_active ) ?
astra_addon_builder_helper()->design_tab : astra_addon_builder_helper()->general_tab,
),
// Option: Divider.
array(
'name' => 'divider-blog-archive',
'control' => 'ast-divider',
'default' => '',
'type' => 'sub-control',
'parent' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'section' => 'section-blog',
'title' => __( 'Archive Summary Box', 'astra-addon' ),
'tab' => __( 'Normal', 'astra-addon' ),
'priority' => 11,
'settings' => array(),
'context' => ( true === astra_addon_builder_helper()->is_header_footer_builder_active ) ?
astra_addon_builder_helper()->design_tab : astra_addon_builder_helper()->general_tab,
),
// Option: Archive Summary Box Background Color.
array(
'name' => 'archive-summary-box-bg-color',
'default' => astra_get_option( 'archive-summary-box-bg-color' ),
'tab' => __( 'Normal', 'astra-addon' ),
'priority' => 11,
'type' => 'sub-control',
'parent' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'section' => 'section-blog',
'transport' => 'postMessage',
'control' => 'ast-color',
'title' => __( 'Background Color', 'astra-addon' ),
'description' => __( 'This background color will not work on full-width layout.', 'astra-addon' ),
'context' => ( true === astra_addon_builder_helper()->is_header_footer_builder_active ) ?
astra_addon_builder_helper()->design_tab : astra_addon_builder_helper()->general_tab,
),
// Option: Archive Summary Box Title Color.
array(
'type' => 'sub-control',
'tab' => __( 'Normal', 'astra-addon' ),
'priority' => 11,
'parent' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'section' => 'section-blog',
'control' => 'ast-color',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ),
'transport' => 'postMessage',
'name' => 'archive-summary-box-title-color',
'default' => astra_get_option( 'archive-summary-box-title-color' ),
'title' => __( 'Title Color', 'astra-addon' ),
),
// Option: Archive Summary Box Description Color.
array(
'type' => 'sub-control',
'tab' => __( 'Normal', 'astra-addon' ),
'priority' => 11,
'parent' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'section' => 'section-blog',
'control' => 'ast-color',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ),
'transport' => 'postMessage',
'name' => 'archive-summary-box-text-color',
'default' => astra_get_option( 'archive-summary-box-text-color' ),
'title' => __( 'Description Color', 'astra-addon' ),
),
// Option: Blog / Archive Post Title Color.
array(
'type' => 'sub-control',
'tab' => __( 'Normal', 'astra-addon' ),
'priority' => 10,
'parent' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'section' => 'section-blog',
'control' => 'ast-color',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ),
'default' => astra_get_option( 'page-title-color' ),
'transport' => 'postMessage',
'name' => 'page-title-color',
'title' => __( 'Post Title Color', 'astra-addon' ),
),
// Option: Post Meta Color.
array(
'type' => 'sub-control',
'tab' => __( 'Normal', 'astra-addon' ),
'priority' => 10,
'parent' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'section' => 'section-blog',
'control' => 'ast-color',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ),
'default' => astra_get_option( 'post-meta-color' ),
'transport' => 'postMessage',
'name' => 'post-meta-color',
'title' => __( 'Meta Color', 'astra-addon' ),
),
// Option: Post Meta Link Color.
array(
'type' => 'sub-control',
'tab' => __( 'Normal', 'astra-addon' ),
'priority' => 10,
'parent' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'section' => 'section-blog',
'control' => 'ast-color',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ),
'default' => astra_get_option( 'post-meta-link-color' ),
'transport' => 'postMessage',
'name' => 'post-meta-link-color',
'title' => __( 'Meta Link Color', 'astra-addon' ),
),
// Option: Post Meta Link Hover Color.
array(
'type' => 'sub-control',
'tab' => __( 'Hover', 'astra-addon' ),
'priority' => 12,
'parent' => ASTRA_THEME_SETTINGS . '[blog-content-color-group]',
'section' => 'section-blog',
'control' => 'ast-color',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ),
'default' => astra_get_option( 'post-meta-link-h-color' ),
'transport' => 'postMessage',
'name' => 'post-meta-link-h-color',
'title' => __( 'Meta Link Color', 'astra-addon' ),
),
);
if ( false === astra_addon_builder_helper()->is_header_footer_builder_active ) {
array_push(
$_configs,
/**
* Option: Blog Color Section heading
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[blog-color-heading-divider]',
'type' => 'control',
'control' => 'ast-heading',
'section' => 'section-blog',
'title' => __( 'Colors and Background', 'astra-addon' ),
'priority' => 125,
'settings' => array(),
'context' => astra_addon_builder_helper()->general_tab,
)
);
}
return array_merge( $configurations, $_configs );
}
}
Expand full source code Collapse full source code View on Trac
Methods
- register_configuration — Register General Customizer Configurations.