editor = $editor; } /** * @return Vc_Editor_Interface */ public function editor() { return $this->editor; } /** * @deprecated 4.7 */ public function render() { _deprecated_function( '\Vc_Post_Settings::render', '4.7 (will be removed in 4.11)', '\Vc_Post_Settings::renderUITemplate' ); 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, ) ); } }