PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.4
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.4
4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 All 138 releases
learnpress / config / elementor / instructor / single-instructor.php

single-instructor.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.4.4, at config/elementor/instructor/single-instructor.php

34 lines 791 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Elementor Controls for instructor settings.
4 */
5
6 use Elementor\Controls_Manager;
7
8 return apply_filters(
9 'learn-press/elementor/single-instructor',
10 array_merge(
11 apply_filters(
12 'learn-press/elementor/single-instructor/tab-content/fields',
13 [
14 'section_content' => [
15 'type_detect' => 'section',
16 'label' => esc_html__( 'Content', 'learnpress' ),
17 ],
18 'grid_list_type' => [
19 'type_detect' => 'control',
20 'label' => esc_html__( 'Layout Type', 'learnpress' ),
21 'type' => Controls_Manager::SELECT,
22 'options' => array(
23 'list' => esc_html__( 'List', 'learnpress' ),
24 'grid' => esc_html__( 'Grid', 'learnpress' ),
25 ),
26 'default' => 'grid',
27 ],
28 'end_section' => [],
29 ]
30 ),
31 []
32 )
33 );
34