BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
CTR
/
wp-content
/
plugins
/
js_composer
/
include
/
classes
/
editors
/
popups
📤 Upload
📝 New File
📁 New Folder
Close
Editing: class-vc-promo-popup.php
<?php /** * Promo popup. */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Promo popup class. * * @since 7.3 */ class Vc_Promo_Popup { /** * Render UI template. */ public function render_ui_template() { $user_id = get_current_user_id(); $user_meta = get_user_meta( $user_id, '_vc_editor_promo_popup', true ); if ( WPB_VC_VERSION == $user_meta ) { return; } vc_include_template( 'editors/popups/promo/promo-popup.tpl.php', [ 'box' => $this ] ); update_user_meta( $user_id, '_vc_editor_promo_popup', WPB_VC_VERSION ); } }
Save
Cancel