PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.3.9
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.3.9
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 / inc / ExternalPlugin / Elementor / LPSkinBase.php

LPSkinBase.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.3.9, at inc/ExternalPlugin/Elementor/LPSkinBase.php

31 lines 575 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace LearnPress\ExternalPlugin\Elementor;
3
4 use Elementor\Skin_Base;
5
6 abstract class LPSkinBase extends Skin_Base {
7 /**
8 * @var string
9 */
10 public $lp_el_skin_id = '';
11 /**
12 * @var string
13 */
14 public $lp_el_skin_title = '';
15
16 public function get_id() {
17 return 'lp_el_skin_' . $this->lp_el_skin_id;
18 }
19
20 public function get_title() {
21 return $this->lp_el_skin_title;
22 }
23
24 // For hook add controls of each skin type
25 protected function _register_controls_actions() {}
26
27 public function render() {
28 // Render your skin here
29 }
30 }
31