mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 11:02:00 +01:00
34 lines
606 B
PHP
34 lines
606 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
class ControllerStatOnline extends Controller {
|
||
|
private $error = array();
|
||
|
|
||
|
public function index(){
|
||
|
|
||
|
$this->id = "content";
|
||
|
$this->template = "stat/online.tpl";
|
||
|
$this->layout = "common/layout";
|
||
|
|
||
|
|
||
|
$request = Registry::get('request');
|
||
|
$db = Registry::get('db');
|
||
|
|
||
|
$this->load->model('saas/customer');
|
||
|
|
||
|
$this->document->title = $this->data['text_statistics'];
|
||
|
|
||
|
if(Registry::get('admin_user') == 0) {
|
||
|
die("go away");
|
||
|
}
|
||
|
|
||
|
$this->data['users'] = $this->model_saas_customer->get_online_users();
|
||
|
|
||
|
$this->render();
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|