HEX
Server: LiteSpeed
System: Linux l24.yourwebhosting.net 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: turkishi (1582)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/plugins/learnpress/inc/ExternalPlugin/Elementor/LPSkinBase.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
	}
}