Astra_Woo_Shop_Container_Configs
Customizer Sanitizes Initial setup
Description
Source
File: inc/compatibility/woocommerce/customizer/sections/class-astra-woo-shop-container-configs.php
class Astra_Woo_Shop_Container_Configs extends Astra_Customizer_Config_Base { /** * Register Astra-WooCommerce Shop Container Settings. * * @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: Shop Page */ array( 'name' => ASTRA_THEME_SETTINGS . '[woocommerce-content-layout]', 'type' => 'control', 'control' => 'ast-select', 'default' => astra_get_option( 'woocommerce-content-layout' ), 'section' => 'section-container-layout', 'priority' => 85, 'title' => __( 'WooCommerce Layout', 'astra' ), 'divider' => array( 'ast_class' => 'ast-top-divider' ), 'choices' => array( 'default' => __( 'Default', 'astra' ), 'boxed-container' => __( 'Boxed', 'astra' ), 'content-boxed-container' => __( 'Content Boxed', 'astra' ), 'plain-container' => __( 'Full Width / Contained', 'astra' ), 'page-builder' => __( 'Full Width / Stretched', 'astra' ), ), ), ); return array_merge( $configurations, $_configs ); } }
Expand full source code Collapse full source code View on Trac
Methods
- register_configuration — Register Astra-WooCommerce Shop Container Settings.