115 lines
3.0 KiB
PHP
Raw Normal View History

2024-01-15 08:43:49 +00:00
<?php
/**
* Grid Layout Options
*
* @package Kadence
*/
namespace Kadence;
use Kadence\Theme_Customizer;
use function Kadence\kadence;
$settings = array(
'sfwd-grid_layout_tabs' => array(
'control_type' => 'kadence_tab_control',
'section' => 'sfwd_grid_layout',
'settings' => false,
'priority' => 1,
'input_attrs' => array(
'general' => array(
'label' => __( 'General', 'kadence' ),
'target' => 'sfwd_grid_layout',
),
'design' => array(
'label' => __( 'Design', 'kadence' ),
'target' => 'sfwd_grid_layout_design',
),
'active' => 'general',
),
),
'sfwd-grid_layout_tabs_design' => array(
'control_type' => 'kadence_tab_control',
'section' => 'sfwd_grid_layout_design',
'settings' => false,
'priority' => 1,
'input_attrs' => array(
'general' => array(
'label' => __( 'General', 'kadence' ),
'target' => 'sfwd_grid_layout',
),
'design' => array(
'label' => __( 'Design', 'kadence' ),
'target' => 'sfwd_grid_layout_design',
),
'active' => 'design',
),
),
'learndash_course_grid' => array(
'control_type' => 'kadence_switch_control',
'sanitize' => 'kadence_sanitize_toggle',
'section' => 'sfwd_grid_layout',
'priority' => 3,
'default' => kadence()->default( 'learndash_course_grid' ),
'label' => esc_html__( 'Override Course Grid Styles', 'kadence' ),
'transport' => 'refresh',
),
'learndash_course_grid_style' => array(
'control_type' => 'kadence_radio_icon_control',
'section' => 'sfwd_grid_layout',
'priority' => 7,
'label' => esc_html__( 'Content Style', 'kadence' ),
'default' => kadence()->default( 'learndash_course_grid_style' ),
'transport' => 'refresh',
'context' => array(
array(
'setting' => 'learndash_course_grid',
'operator' => '=',
'value' => true,
),
),
'input_attrs' => array(
'layout' => array(
'boxed' => array(
'tooltip' => __( 'Boxed', 'kadence' ),
'icon' => 'gridBoxed',
),
'unboxed' => array(
'tooltip' => __( 'Unboxed', 'kadence' ),
'icon' => 'gridUnboxed',
),
),
'responsive' => false,
'class' => 'kadence-two-col',
),
),
'sfwd-grid_title_font' => array(
'control_type' => 'kadence_typography_control',
'section' => 'sfwd_grid_layout_design',
'label' => esc_html__( 'Course Grid Entry Title Font', 'kadence' ),
'default' => kadence()->default( 'sfwd-grid_title_font' ),
'live_method' => array(
array(
'type' => 'css_typography',
'selector' => '.ld-course-list-items .ld_course_grid.entry .entry-title',
'property' => 'font',
'key' => 'typography',
),
),
'context' => array(
array(
'setting' => 'learndash_course_grid',
'operator' => '=',
'value' => true,
),
),
'input_attrs' => array(
'id' => 'sfwd-grid_title_font',
'headingInherit' => true,
),
),
);
Theme_Customizer::add_settings( $settings );