You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
475 B
17 lines
475 B
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
use app\core\utils\Response;
|
|
use app\core\auth\Page;
|
|
|
|
class Statistics extends MY_Controller {
|
|
|
|
public function __construct() {
|
|
$this->my_parent_controller();
|
|
Response::handleSessionTimeout("bo");
|
|
$this->load_language_backoffice();
|
|
Page::authorize(PAGE_CODE['statistics'], PRIVS[PAGE_CODE['statistics']]['view'], true);
|
|
$this->clear_cache();
|
|
}
|
|
|
|
|
|
}
|