????

Your IP : 216.73.216.174


Current Path : /home2/morganrand/.trash/js_composer/include/classes/editors/popups/
Upload File :
Current File : /home2/morganrand/.trash/js_composer/include/classes/editors/popups/class-vc-post-settings.php

<?php
/**
 * WPBakery Visual Composer main class.
 *
 * @package WPBakeryVisualComposer
 * @since   4.3
 */

/**
 * Post settings like custom css for page are displayed here.
 *
 * @since   4.3
 */
class Vc_Post_Settings implements Vc_Render {
	/**
	 * @var Vc_Editor_Interface
	 */
	protected $editor;

	/**
	 * @param Vc_Editor_Interface $editor
	 */
	public function __construct( Vc_Editor_Interface $editor ) {
		$this->editor = $editor;
	}

	/**
	 * @return Vc_Editor_Interface
	 */
	public function editor() {
		return $this->editor;
	}

	/**
	 * @deprecated 4.7
	 */
	public function render() {
		vc_include_template( 'editors/popups/panel_post_settings.tpl.php', array(
			'box' => $this
		) );
	}
	/**
	 *
	 */
	public function renderUITemplate() {
		vc_include_template( 'editors/popups/vc_ui-panel-post-settings.tpl.php', array(
			'box' => $this
		) );
	}
}