PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.1
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.1
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 / title.php

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

89 lines 2.0 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 Display Name 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 LPElementorControls::add_control_type(
29 'wrapper_tags',
30 esc_html__( 'Add html tag wrapper Instructor Name', 'learnpress' ),
31 [
32 [
33 'open_tag' => '<div class="">',
34 'close_tag' => '</div>',
35 ],
36 ],
37 Controls_Manager::REPEATER,
38 [
39 'fields' => [
40 [
41 'name' => 'open_tag',
42 'label' => esc_html__( 'Html Open tag', 'learnpress' ),
43 'type' => Controls_Manager::TEXT,
44 'label_block' => true,
45 ],
46 [
47 'name' => 'close_tag',
48 'label' => esc_html__( 'Html Close tag', 'learnpress' ),
49 'type' => Controls_Manager::TEXT,
50 'label_block' => true,
51 ],
52
53 ],
54 'prevent_empty' => false,
55 ]
56 ),
57 ]
58 ),
59 []
60 );
61
62 // Fields tab style
63 $style_fields = array_merge(
64 LPElementorControls::add_fields_in_section(
65 'instructor_name',
66 esc_html__( 'Instructor name', 'learnpress' ),
67 Controls_Manager::TAB_STYLE,
68 LPElementorControls::add_controls_style_text(
69 'title',
70 '.instructor-display-name'
71 )
72 ),
73 []
74 );
75
76 return apply_filters(
77 'learn-press/elementor/instructor/title',
78 array_merge(
79 apply_filters(
80 'learn-press/elementor/instructor/title/tab-content',
81 $content_fields
82 ),
83 apply_filters(
84 'learn-press/elementor/instructor/title/tab-styles',
85 $style_fields
86 )
87 )
88 );
89