piler/webui/controller/stat/stat.php

34 lines
699 B
PHP
Raw Permalink Normal View History

2012-02-08 23:14:28 +01:00
<?php
class ControllerStatStat extends Controller {
private $error = array();
public function index(){
$this->id = "content";
$this->template = "stat/stat.tpl";
$this->layout = "common/layout";
$request = Registry::get('request');
$db = Registry::get('db');
$this->load->model('user/user');
$this->document->title = $this->data['text_statistics'];
$this->data['timespan'] = @$this->request->get['timespan'];
$this->data['uid'] = @$this->request->get['uid'];
$this->data['admin_user'] = Registry::get('admin_user');
$this->data['readonly_admin'] = Registry::get('readonly_admin');
$this->render();
}
}
?>