HEX
Server: nginx/1.18.0
System: Linux iZj6c1ieg2jrpk1z5tzi19Z 6.3.9-1.el7.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 21 22:18:40 EDT 2023 x86_64
User: www (1001)
PHP: 8.2.4
Disabled: 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
Upload Files
File: /www/wwwroot/www.cytocare.cn/wp-content/plugins/online-contact-widget/inc/mode_contact.php
<?php

/**
 * Author: wbolt team
 * Author URI: https://www.wbolt.com
 */

if (!defined('ONLINE_CONTACT_WIDGET_PATH')) return;
//global $wp;
$tool_items = array();
$msg_opt = $items_data['msg'];
$msg_cnf = $cnf['contact_items']['msg'];
$dark_class = $dark_switch ? ' ocw-dark' : '';
$fillet_class = $fillet_select ? ' ocw-fillet' : '';
$size_class = $size_select ? ' ocw-big' : '';
$class_name = $dark_class . $fillet_class . $size_class;
$current_url = home_url($_SERVER['REQUEST_URI']);
$vk_active = class_exists('WP_VK') ? 1 : 0;

if (is_array($active_items)) foreach ($active_items as $key) {
  $item = array(
    'id' => $key,
    'name' => isset($_opt['name']) ? $_opt['name'] : (isset($cnf['name']) ? $cnf['name'] : ''),
    'opt' => $items_data[$key],
    'cnf' => $cnf['contact_items'][$key]
  );

  $tool_items[] = $item;
}

/**
 * 默认展开 黑暗模式 'ocw-dark', 圆角模式 ‘ocw-fillet’, 大尺寸 ‘ocw-big’
 */

// 展开模式
if ($is_fold == '0' && !wp_is_mobile()) {
  include_once ONLINE_CONTACT_WIDGET_PATH . '/inc/fold.tpl.php';
} else {
  include_once ONLINE_CONTACT_WIDGET_PATH . '/inc/unfold.tpl.php';
}
?>