| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.3/wp-content/plugins/js_composer/modules/ai/ |
Upload File : |
<?php
/**
* Settings tab for AI module.
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
/**
* Module settings.
*
* @since 7.8
*/
class Vc_Ai_Module_Settings {
/**
* Init point.
*
* @since 7.8
*/
public function init() {
add_filter( 'vc_settings_tabs', [ $this, 'set_setting_tab' ], 15 );
add_filter( 'vc_settings-render-tab-vc-ai', [ $this, 'render_setting_tab_html' ] );
add_action( 'vc-settings-render-tab-vc-ai', [ $this, 'load_module_settings_assets' ] );
}
/**
* Add module tab to settings.
*
* @since 7.8
* @param array $tabs
* @return array
*/
public function set_setting_tab( $tabs ) {
if ( vc_settings()->showConfigurationTabs() ) {
$tabs['vc-ai'] = esc_html__( 'WPBakery AI', 'js_composer' );
}
return $tabs;
}
/**
* Render tab content.
*
* @since 7.8
*/
public function render_setting_tab_html() {
return '/pages/vc-settings/vc-ai.php';
}
/**
* Load assets related to module settings.
*
* @since 7.8
*/
public function load_module_settings_assets() {
wp_enqueue_style( 'wpb_ai_module', vc_asset_url( '../modules/ai/assets/dist/module.min.css' ), false, WPB_VC_VERSION );
}
}