File: /www/wwwroot/bs.kntsleep.com/system/admin/statistics/orders.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 orders extends admin
{
public function init()
{
global $G;
$G['cover'] = $this->cover();
$G['total'] = array(
mysql::total('orders',"1"),
setDefault(arrExist(mysql::select_one('SUM(price) AS price','orders',"1"),'price'),0)
);
echo $this->theme('statistics/orders',$data);
}
}
?>