First commit

This commit is contained in:
2025-06-18 10:24:27 +08:00
commit ebc39cd5dd
3873 changed files with 412712 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: optimizer_postqqonly.php 33867 2013-08-23 06:12:21Z jeffjzhang $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class optimizer_postqqonly {
public function __construct() {
}
public function check() {
$accountguard = C::t('common_setting')->fetch_setting('accountguard', true);
if(!$accountguard['postqqonly']) {
$return = array('status' => 1, 'type' =>'header', 'lang' => lang('optimizer', 'optimizer_postqqonly_need'));
} else {
$return = array('status' => 0, 'type' =>'none', 'lang' => lang('optimizer', 'optimizer_postqqonly_no_need'));
}
return $return;
}
public function optimizer() {
$adminfile = defined(ADMINSCRIPT) ? ADMINSCRIPT : 'admin.php';
dheader('Location: '.$_G['siteurl'].$adminfile.'?action=setting&operation=accountguard');
}
}
?>