wpr-ajax-select2
5 days ago
wpr-control-animations.php
5 days ago
wpr-control-icons.php
5 days ago
wpr-select2.php
5 days ago
wpr-select2.php
21 lines
| 1 | <?php |
| 2 | namespace WprAddons\Includes\Controls; |
| 3 | |
| 4 | use Elementor\Control_Select2; |
| 5 | |
| 6 | if ( ! defined( 'ABSPATH' ) ) { |
| 7 | exit; |
| 8 | } |
| 9 | |
| 10 | class WPR_Select2 extends Control_Select2 { |
| 11 | |
| 12 | const TYPE = 'wpr-select2'; |
| 13 | |
| 14 | /** |
| 15 | * Returns the type of the control |
| 16 | */ |
| 17 | public function get_type() { |
| 18 | return self::TYPE; |
| 19 | } |
| 20 | } |
| 21 |