init(); if(!defined('DISCUZ_VERSION')) { require './source/discuz_version.php'; } if(in_array('mobile', $_G['setting']['plugins']['available'])) { loadcache('wsq_checkinfo'); if (!$_G['cache']['wsq_checkinfo'] || TIMESTAMP - $_G['cache']['wsq_checkinfo']['expiration'] > 600) { $_G['wechat']['setting'] = unserialize($_G['setting']['mobilewechat']); $forums = C::t('forum_forum')->fetch_all_by_status(1); foreach ($forums as $forum) { $posts += $forum['posts']; } loadcache('userstats'); $array = array( 'discuzversion' => DISCUZ_VERSION, 'charset' => CHARSET, 'version' => MOBILE_PLUGIN_VERSION, 'pluginversion' => $_G['setting']['plugins']['version']['mobile'], 'regname' => $_G['setting']['regname'], 'qqconnect' => in_array('qqconnect', $_G['setting']['plugins']['available']) ? '1' : '0', 'wsqqqconnect' => in_array('qqconnect', $_G['setting']['plugins']['available']) ? '1' : '0', 'wsqhideregister' => $_G['wechat']['setting']['wechat_allowregister'] && $_G['wechat']['setting']['wechat_allowfastregister'] ? '1' : '0', 'sitename' => $_G['setting']['bbname'], 'mysiteid' => $_G['setting']['my_siteid'], 'ucenterurl' => $_G['setting']['ucenterurl'], 'defaultfid' => $_G['wechat']['setting']['wsq_fid'], 'totalposts' => $posts, 'totalmembers' => $_G['cache']['userstats']['totalmembers'], ); savecache('wsq_checkinfo', array('variable' => $array, 'expiration' => TIMESTAMP)); } else { $array = $_G['cache']['wsq_checkinfo']['variable']; } } else { $array = array(); } $array['testcookie'] = $_G['cookie']['testcookie']; $data = mobile_core::json($array); mobile_core::make_cors($_SERVER['REQUEST_METHOD'], REQUEST_METHOD_DOMAIN); echo $data; ?>