36 lines
936 B
PHP
36 lines
936 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||
|
* This is NOT a freeware, use is subject to license terms
|
||
|
*
|
||
|
* $Id: optimizer_eviluser.php 33867 2013-08-23 06:12:21Z jeffjzhang $
|
||
|
*/
|
||
|
|
||
|
if(!defined('IN_DISCUZ')) {
|
||
|
exit('Access Denied');
|
||
|
}
|
||
|
|
||
|
class optimizer_eviluser {
|
||
|
|
||
|
public function __construct() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function check() {
|
||
|
$eviluser = C::t('#security#security_eviluser')->fetch_range(0, 1);
|
||
|
if($eviluser) {
|
||
|
$return = array('status' => 1, 'type' =>'header', 'lang' => lang('optimizer', 'optimizer_eviluser_need'));
|
||
|
} else {
|
||
|
$return = array('status' => 0, 'type' =>'none', 'lang' => lang('optimizer', 'optimizer_eviluser_no_need'));
|
||
|
}
|
||
|
return $return;
|
||
|
}
|
||
|
|
||
|
public function optimizer() {
|
||
|
$adminfile = defined(ADMINSCRIPT) ? ADMINSCRIPT : 'admin.php';
|
||
|
dheader('Location: '.$_G['siteurl'].$adminfile.'?action=cloud&operation=security&anchor=member');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|