summaryrefslogtreecommitdiff
path: root/inc/customizer/configurations/layout/class-astra-site-layout-configs.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/customizer/configurations/layout/class-astra-site-layout-configs.php')
-rw-r--r--inc/customizer/configurations/layout/class-astra-site-layout-configs.php69
1 files changed, 69 insertions, 0 deletions
diff --git a/inc/customizer/configurations/layout/class-astra-site-layout-configs.php b/inc/customizer/configurations/layout/class-astra-site-layout-configs.php
new file mode 100644
index 0000000..caf3e85
--- /dev/null
+++ b/inc/customizer/configurations/layout/class-astra-site-layout-configs.php
@@ -0,0 +1,69 @@
+<?php
+/**
+ * Site Layout Option 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_Site_Layout_Configs' ) ) {
+
+ /**
+ * Register Site Layout Customizer Configurations.
+ */
+ class Astra_Site_Layout_Configs extends Astra_Customizer_Config_Base {
+
+ /**
+ * Register Site Layout 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 ) {
+
+ $_configs = array(
+
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[site-content-width]',
+ 'type' => 'control',
+ 'control' => 'ast-slider',
+ 'default' => astra_get_option( 'site-content-width' ),
+ 'section' => 'section-container-layout',
+ 'priority' => 10,
+ 'title' => __( 'Container Width', 'astra' ),
+ 'context' => ( defined( 'ASTRA_EXT_VER' ) && Astra_Ext_Extension::is_active( 'site-layouts' ) ) ? array(
+ Astra_Builder_Helper::$general_tab_config,
+ array(
+ 'setting' => ASTRA_THEME_SETTINGS . '[site-layout]',
+ 'operator' => '==',
+ 'value' => 'ast-full-width-layout',
+ ),
+ ) : array(),
+ 'suffix' => 'px',
+ 'input_attrs' => array(
+ 'min' => 768,
+ 'step' => 1,
+ 'max' => 1920,
+ ),
+ 'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
+ ),
+ );
+
+ return array_merge( $configurations, $_configs );
+ }
+ }
+}
+
+/**
+ * Kicking this off by calling 'get_instance()' method
+ */
+new Astra_Site_Layout_Configs();