balmet.com

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

css-model.php (372B)


      1 <?php
      2 
      3 namespace Elementor\Core\Settings\Base;
      4 
      5 if ( ! defined( 'ABSPATH' ) ) {
      6 	exit; // Exit if accessed directly
      7 }
      8 
      9 abstract class CSS_Model extends Model {
     10 
     11 	/**
     12 	 * Get CSS wrapper selector.
     13 	 *
     14 	 * Retrieve the wrapper selector for the current panel.
     15 	 *
     16 	 * @since 1.6.0
     17 	 * @access public
     18 	 * @abstract
     19 	 */
     20 	abstract public function get_css_wrapper_selector();
     21 }