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 / sections / count_courses.php

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

60 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Elementor Controls for widget Instructor Count Courses settings.
4 *
5 * @since 4.2.3
6 * @version 1.0.0
7 */
8
9 use Elementor\Controls_Manager;
10 use LearnPress\ExternalPlugin\Elementor\LPElementorControls;
11
12 // Fields tab content
13 $content_fields = array_merge(
14 LPElementorControls::add_fields_in_section(
15 'wrapper',
16 esc_html__( 'Wrapper', 'learnpress' ),
17 Controls_Manager::TAB_CONTENT,
18 [
19 LPElementorControls::add_control_type(
20 'instructor_id',
21 esc_html__( 'Set Instructor ID', 'learnpress' ),
22 '',
23 Controls_Manager::TEXT,
24 [
25 'description' => 'If widget include on page is Single Instructor, will be get instructor id automatic, from query var.',
26 ]
27 )
28 ]
29 ),
30 []
31 );
32
33 // Fields tab style
34 $style_fields = array_merge(
35 LPElementorControls::add_fields_in_section(
36 'instructor_count_courses',
37 esc_html__( 'Instructor Count Courses', 'learnpress' ),
38 Controls_Manager::TAB_STYLE,
39 LPElementorControls::add_controls_style_text(
40 'count_courses',
41 '.instructor-total-courses'
42 )
43 ),
44 []
45 );
46
47 return apply_filters(
48 'learn-press/elementor/instructor/count-courses',
49 array_merge(
50 apply_filters(
51 'learn-press/elementor/instructor/count-courses/tab-content',
52 $content_fields
53 ),
54 apply_filters(
55 'learn-press/elementor/instructor/count-courses/tab-styles',
56 $style_fields
57 )
58 )
59 );
60