?
Current File : /home/cideo/sainchargny/wp-content/plugins/elementor/includes/css-file/post-css-file.php
<?php
namespace Elementor;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Post_CSS_File extends CSS_File {

	const META_KEY = '_elementor_css';

	const FILE_PREFIX = 'post-';

	/*
	 * @var int
	 */
	private $post_id;

	/**
	 * Post_CSS_File constructor.
	 *
	 * @since 1.2.0
	 * @access public
	 * @param int $post_id
	 */
	public function __construct( $post_id ) {
		$this->post_id = $post_id;

		parent::__construct();
	}

	/**
	 * @since 1.6.0
	 * @access public
	*/
	public function get_name() {
		return 'post';
	}

	/**
	 * @since 1.2.0
	 * @access public
	 * @return int
	 */
	public function get_post_id() {
		return $this->post_id;
	}

	/**
	 * @since 1.2.0
	 * @access public
	 * @param Element_Base $element
	 *
	 * @return string
	 */
	public function get_element_unique_selector( Element_Base $element ) {
		return '.elementor-' . $this->post_id . ' .elementor-element' . $element->get_unique_selector();
	}

	/**
	 * @since 1.2.0
	 * @access protected
	 * @return array
	 */
	protected function load_meta() {
		return get_post_meta( $this->post_id, static::META_KEY, true );
	}

	/**
	 * @since 1.2.0
	 * @access protected
	 * @param array $meta
	 */
	protected function update_meta( $meta ) {
		update_post_meta( $this->post_id, static::META_KEY, $meta );
	}

	/**
	 * @since 1.9.0
	 * @access protected
	 */
	protected function get_data() {
		return Plugin::$instance->db->get_plain_editor( $this->post_id );
	}

	/**
	 * @since 1.2.0
	 * @access protected
	*/
	protected function render_css() {
		$data = $this->get_data();

		if ( ! empty( $data ) ) {
			foreach ( $data as $element_data ) {
				$element = Plugin::$instance->elements_manager->create_element_instance( $element_data );

				if ( ! $element ) {
					continue;
				}

				$this->render_styles( $element );
			}
		}
	}

	/**
	 * @since 1.2.2
	 * @access public
	*/
	public function enqueue() {
		if ( ! Plugin::$instance->db->is_built_with_elementor( $this->post_id ) ) {
			return;
		}

		parent::enqueue();
	}

	/**
	 * @since 1.6.0
	 * @access public
	*/
	public function add_controls_stack_style_rules( Controls_Stack $controls_stack, array $controls, array $values, array $placeholders, array $replacements ) {
		parent::add_controls_stack_style_rules( $controls_stack, $controls, $values, $placeholders, $replacements );

		if ( $controls_stack instanceof Element_Base ) {
			foreach ( $controls_stack->get_children() as $child_element ) {
				$this->render_styles( $child_element );
			}
		}
	}

	/**
	 * @since 1.2.0
	 * @access protected
	*/
	protected function get_enqueue_dependencies() {
		return [ 'elementor-frontend' ];
	}

	/**
	 * @since 1.2.0
	 * @access protected
	*/
	protected function get_inline_dependency() {
		return 'elementor-frontend';
	}

	/**
	 * @since 1.2.0
	 * @access protected
	*/
	protected function get_file_handle_id() {
		return 'elementor-post-' . $this->post_id;
	}

	/**
	 * @since 1.2.0
	 * @access protected
	*/
	protected function get_file_name() {
		return self::FILE_PREFIX . $this->post_id;
	}

	/**
	 * @access protected
	 * @since 1.2.0
	 * @param Element_Base $element
	 */
	protected function render_styles( Element_Base $element ) {
		/**
		 * Before element parse CSS.
		 *
		 * Fires before the CSS of the element is parsed.
		 *
		 * @since 1.2.0
		 *
		 * @param Post_CSS_File $this    The post CSS file.
		 * @param Element_Base  $element The element.
		 */
		do_action( 'elementor/element/before_parse_css', $this, $element );

		$element_settings = $element->get_settings();

		$this->add_controls_stack_style_rules( $element, $element->get_style_controls(), $element_settings,  [ '{{ID}}', '{{WRAPPER}}' ], [ $element->get_id(), $this->get_element_unique_selector( $element ) ] );

		/**
		 * After element parse CSS.
		 *
		 * Fires after the CSS of the element is parsed.
		 *
		 * @since 1.2.0
		 *
		 * @param Post_CSS_File $this    The post CSS file.
		 * @param Element_Base  $element The element.
		 */
		do_action( 'elementor/element/parse_css', $this, $element );
	}
}