Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
argonautisbc
/
wp-content
/
plugins
/
js_composer
/
modules
/
custom-js
/
Editing: class-vc-custom-js-module-settings.php
<?php /** * Module settings. * * @since 7.7 */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Module settings. * * @since 7.7 */ class Vc_Custom_Js_Module_Settings { /** * Init point. * * @since 7.7 */ public function init() { add_filter( 'vc_settings_tabs', [ $this, 'set_setting_tab' ], 14 ); add_action( 'vc_settings_set_sections', [ $this, 'add_settings_section' ] ); add_action( 'vc-settings-render-tab-vc-custom_js', [ $this, 'load_module_settings_assets' ] ); } /** * Add module tab to settings. * * @since 7.7 * @param array $tabs * @return array */ public function set_setting_tab( $tabs ) { if ( vc_settings()->showConfigurationTabs() ) { $tabs['vc-custom_js'] = esc_html__( 'Custom JS', 'js_composer' ); } return $tabs; } /** * Add sections to plugin settings tab. */ public function add_settings_section() { $tab = 'custom_js'; vc_settings()->addSection( $tab ); vc_settings()->addField( $tab, esc_html__( 'JavaScript in <head>', 'js_composer' ), 'custom_js_header', array( $this, 'sanitize_custom_js_header_callback', ), array( $this, 'custom_js_header_field_callback', ) ); vc_settings()->addField( $tab, esc_html__( 'JavaScript before </body>', 'js_composer' ), 'custom_js_footer', array( $this, 'sanitize_custom_js_footer_callback', ), array( $this, 'custom_js_footer_field_callback', ) ); } /** * Sanitize custom js header. * * @since 7.7 * @param string $js * @return string */ public function sanitize_custom_js_header_callback( $js ) { return $js; } /** * Sanitize custom js footer. * * @since 7.7 * @param string $js * @return string */ public function sanitize_custom_js_footer_callback( $js ) { return $js; } /** * Load assets related to module settings. * * @since 7.8 */ public function load_module_settings_assets() { wp_enqueue_script( 'ace-editor', vc_asset_url( 'lib/vendor/node_modules/ace-builds/src-min-noconflict/ace.js' ), [ 'jquery-core' ], WPB_VC_VERSION, true ); wp_enqueue_script( 'wpb-code-editor', vc_asset_url( 'js/dist/post-code-editor.min.js' ), [ 'jquery-core' ], WPB_VC_VERSION, true ); wp_enqueue_script( 'wpb_custom_js_module', vc_asset_url( '../modules/custom-js/assets/dist/module.min.js' ), array(), WPB_VC_VERSION, true ); wp_enqueue_style( 'wpb_custom_js_module', vc_asset_url( '../modules/custom-js/assets/dist/module.min.css' ), false, WPB_VC_VERSION ); if ( vc_modules_manager()->is_module_on( 'vc-ai' ) ) { wp_enqueue_script( 'wpb_ai_module', vc_asset_url( '../modules/ai/assets/dist/module.min.js' ), [], WPB_VC_VERSION, true ); wp_enqueue_style( 'wpb_ai_module', vc_asset_url( '../modules/ai/assets/dist/module.min.css' ), false, WPB_VC_VERSION ); } } /** * Output custom js editor field for header tag. * * @since 7.7 */ public function custom_js_header_field_callback() { $value = get_option( vc_settings()::$field_prefix . 'custom_js_header' ); if ( empty( $value ) ) { $value = ''; } vc_include_template( 'editors/vc-settings/custom-js.tpl.php', [ 'value' => $value, 'field_prefix' => vc_settings()::$field_prefix, 'area' => 'header', ] ); } /** * Output custom js editor field for footer tag. * * @since 7.7 */ public function custom_js_footer_field_callback() { $value = get_option( vc_settings()::$field_prefix . 'custom_js_footer' ); if ( empty( $value ) ) { $value = ''; } vc_include_template( 'editors/vc-settings/custom-js.tpl.php', [ 'value' => $value, 'field_prefix' => vc_settings()::$field_prefix, 'area' => 'footer', ] ); } }
Save
Cancel