balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

base-ui.php (516B)


      1 <?php
      2 namespace Elementor;
      3 
      4 if ( ! defined( 'ABSPATH' ) ) {
      5 	exit; // Exit if accessed directly.
      6 }
      7 
      8 /**
      9  * Elementor base UI control.
     10  *
     11  * An abstract class for creating new UI controls in the panel.
     12  *
     13  * @abstract
     14  */
     15 abstract class Base_UI_Control extends Base_Control {
     16 
     17 	/**
     18 	 * Get features.
     19 	 *
     20 	 * Retrieve the list of all the available features.
     21 	 *
     22 	 * @since 1.5.0
     23 	 * @access public
     24 	 * @static
     25 	 *
     26 	 * @return array Features array.
     27 	 */
     28 	public static function get_features() {
     29 		return [ 'ui' ];
     30 	}
     31 }