File: /www/wwwroot/bs.kntsleep.com/system/admin/statistics/member.class.php
<?php
/*
* Copyright (c) Huyin Information Technology Co., Ltd. All Rights Reserved.
* BOSSCMS Content Management System (https://www.bosscms.net/)
*/
defined('IS_OK') or exit('Access Forbidden');
into::basic_class('admin');
class member extends admin
{
public function init()
{
global $G;
$G['cover'] = $this->cover();
$G['total'] = array(
mysql::total('member',"1"),
mysql::total('member',"ltime>0"),
mysql::total('member',"open<=0"),
mysql::total('member',"invite!=''")
);
echo $this->theme('statistics/member',$data);
}
}
?>