| Server IP : 121.121.20.254 / Your IP : 216.73.216.123 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/wst2024/wp-content/plugins/vc_clipboard/ |
Upload File : |
<?php
/**
* Plugin Name: Visual Composer Clipboard | OEM
* Description: Clipboard and template manager for Visual Composer
* Version: 4.1.0
* Author: bitorbit
* Author URI: http://codecanyon.net/user/bitorbit
*/
function vc_clipboard() {
wp_enqueue_script( 'vc_clipboard_script', plugins_url() . '/vc_clipboard/script.min.js' );
wp_enqueue_style( 'vc_clipboard_style', plugins_url() . '/vc_clipboard/style.css' );
}
function vc_clipboard_custom_js() {
echo '<script>window.bt_vcc_plugins_url="' . plugins_url() . '"</script>';
}
add_action( 'admin_enqueue_scripts', 'vc_clipboard' );
add_action( 'admin_head', 'vc_clipboard_custom_js' );