# learnpress/4.3.9.1/inc/ExternalPlugin/Elementor/LPSkinBase.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.9.1. 31 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.9.1/code/inc/ExternalPlugin/Elementor/LPSkinBase.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.9.1/raw/inc/ExternalPlugin/Elementor/LPSkinBase.php
- Modified: 2026-06-10T02:53:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.3.9.1/code/inc/ExternalPlugin/Elementor/LPSkinBase.php#L10-L20`.

```php
<?php
namespace LearnPress\ExternalPlugin\Elementor;

use Elementor\Skin_Base;

abstract class LPSkinBase extends Skin_Base {
	/**
	 * @var string
	 */
	public $lp_el_skin_id = '';
	/**
	 * @var string
	 */
	public $lp_el_skin_title = '';

	public function get_id() {
		return 'lp_el_skin_' . $this->lp_el_skin_id;
	}

	public function get_title() {
		return $this->lp_el_skin_title;
	}

	// For hook add controls of each skin type
	protected function _register_controls_actions() {}

	public function render() {
		// Render your skin here
	}
}

```
