Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subception
/
wp-content
/
plugins
/
js_composer
/
include
/
classes
/
core
:
class-vc-modifications.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Output for custom modifications. */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Class Vc_Modifications */ class Vc_Modifications { /** * Modified flag. * * @var bool */ public static $modified = false; /** * Vc_Modifications constructor. */ public function __construct() { add_action( 'wp_footer', [ $this, 'renderScript', ] ); } /** * Render script. */ public function renderScript() { if ( self::$modified ) { // output script. $tag = 'script'; echo '<' . esc_attr( $tag ) . ' type="text/html" id="wpb-modifications"> window.wpbCustomElement = 1; </' . esc_attr( $tag ) . '>'; } } }