oont-contents/plugins/astra-addon/addons/lifterlms/classes/sections/class-astra-customizer-lifterlms-general-configs.php
2025-02-08 15:10:23 +01:00

180 lines
5.3 KiB
PHP

<?php
/**
* LifterLMS General Options for our theme.
*
* @package Astra Addon
* @link https://www.brainstormforce.com
* @since 1.0.0
*/
// Block direct access to the file.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Bail if Customizer config base class does not exist.
if ( ! class_exists( 'Astra_Customizer_Config_Base' ) ) {
return;
}
/**
* Customizer Sanitizes
*
* @since 1.4.3
*/
if ( ! class_exists( 'Astra_Customizer_Lifterlms_General_Configs' ) ) {
/**
* Register General Customizer Configurations.
*/
// @codingStandardsIgnoreStart
class Astra_Customizer_Lifterlms_General_Configs extends Astra_Customizer_Config_Base {
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound
// @codingStandardsIgnoreEnd
/**
* 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 ) {
$_configs = array(
/**
* Option: Shop Columns
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[llms-course-grid]',
'default' => astra_get_option(
'llms-course-grid',
array(
'desktop' => 3,
'tablet' => 2,
'mobile' => 1,
)
),
'type' => 'control',
'control' => 'ast-responsive-slider',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ),
'section' => 'section-lifterlms-general',
'title' => __( 'Course Columns', 'astra-addon' ),
'priority' => 5,
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 6,
),
'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
),
/**
* Option: Shop Columns
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[llms-membership-grid]',
'default' => astra_get_option(
'llms-membership-grid',
array(
'desktop' => 3,
'tablet' => 2,
'mobile' => 1,
)
),
'type' => 'control',
'control' => 'ast-responsive-slider',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ),
'section' => 'section-lifterlms-general',
'title' => __( 'Membership Columns', 'astra-addon' ),
'priority' => 5,
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 6,
),
'divider' => array( 'ast_class' => 'ast-bottom-divider' ),
),
/**
* Option: Enable Header Profile Link
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[lifterlms-profile-link-enabled]',
'default' => astra_get_option( 'lifterlms-profile-link-enabled' ),
'type' => 'control',
'control' => Astra_Theme_Extension::$switch_control,
'section' => 'section-lifterlms-general',
'title' => __( 'Enable Header Profile Link', 'astra-addon' ),
'priority' => 5,
'divider' => array( 'ast_class' => 'ast-top-section-divider' ),
),
/**
* Option: Divider
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[lifterlms-distraction-free-checkout-divider]',
'section' => 'section-lifterlms-general',
'title' => __( 'Checkout', 'astra-addon' ),
'type' => 'control',
'control' => 'ast-heading',
'priority' => 10,
'settings' => array(),
'divider' => array( 'ast_class' => 'ast-section-spacing' ),
),
/**
* Option: Distraction Free Checkout
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[lifterlms-distraction-free-checkout]',
'default' => astra_get_option( 'lifterlms-distraction-free-checkout' ),
'type' => 'control',
'control' => Astra_Theme_Extension::$switch_control,
'section' => 'section-lifterlms-general',
'title' => __( 'Distraction Free Checkout', 'astra-addon' ),
'priority' => 10,
'divider' => array( 'ast_class' => 'ast-section-spacing' ),
),
/**
* Option: Divider
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[llms-my-account-divider]',
'section' => 'section-lifterlms-general',
'title' => __( 'My Account', 'astra-addon' ),
'type' => 'control',
'control' => 'ast-heading',
'priority' => 15,
'settings' => array(),
'divider' => array( 'ast_class' => 'ast-section-spacing' ),
),
/**
* Option: Enable Vertical Tab
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[lifterlms-my-account-vertical]',
'default' => astra_get_option( 'lifterlms-my-account-vertical' ),
'type' => 'control',
'control' => Astra_Theme_Extension::$switch_control,
'section' => 'section-lifterlms-general',
'title' => __( 'Display Tabs Vertically', 'astra-addon' ),
'priority' => 15,
),
);
return array_merge( $configurations, $_configs );
}
}
}
/**
* Kicking this off by calling 'get_instance()' method
*/
new Astra_Customizer_Lifterlms_General_Configs();