mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 11:32:00 +01:00
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php
|
|
|
|
|
|
class ControllerStatChart extends Controller {
|
|
private $error = array();
|
|
|
|
public function index(){
|
|
|
|
$request = Registry::get('request');
|
|
$db = Registry::get('db');
|
|
$db_history = Registry::get('db_history');
|
|
|
|
$this->load->model('user/user');
|
|
|
|
$this->load->model('stat/chart');
|
|
|
|
$this->load->helper('libchart/classes/libchart');
|
|
|
|
$this->data['username'] = Registry::get('username');
|
|
|
|
$timespan = @$this->request->get['timespan'];
|
|
|
|
$db->select_db($db->database);
|
|
|
|
$emails = "";
|
|
|
|
/* let the admin users see the whole statistics */
|
|
|
|
if(Registry::get('admin_user') == 0 && Registry::get('readonly_admin') == 0) {
|
|
$uid = $this->model_user_user->get_uid_by_name($this->data['username']);
|
|
$emails = "AND rcpt IN ('" . preg_replace("/\n/", "','", $this->model_user_user->get_emails_by_uid((int)$uid)) . "')";
|
|
}
|
|
else if(isset($this->request->get['uid']) && is_numeric($this->request->get['uid']) && $this->request->get['uid'] > 0){
|
|
$emails = "AND rcpt IN ('" . preg_replace("/\n/", "','", $this->model_user_user->get_emails_by_uid((int)$this->request->get['uid'])) . "')";
|
|
}
|
|
|
|
$aa = new ModelStatChart();
|
|
$aa->pieChartHamSpam($emails, $timespan, $this->data['text_ham_and_spam_messages'], "");
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|