FileMaster
Search
Toggle Dark Mode
Home
/
.
/
kiara
/
wp-content
/
plugins
/
premium-addons-for-elementor
/
includes
/
controls
Edit File: premium-select.php
<?php /** * Class: Premium_Select * Name: Premium Select * Slug: premium-select */ namespace PremiumAddons\Includes\Controls; use Elementor\Control_Select2; if ( ! defined( 'ABSPATH' ) ) { exit(); } /** * Premium Select extended from select2 */ class Premium_Select extends Control_Select2 { const TYPE = 'premium-select'; /** * Returns the type of the control */ public function get_type() { return self::TYPE; } }
Save
Back