mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-04-06 03:00:31 +02:00
35 lines
617 B
PHP
35 lines
617 B
PHP
<?php
|
|
|
|
|
|
class ControllerLoginLogout extends Controller {
|
|
private $error = array();
|
|
|
|
public function index(){
|
|
|
|
$this->id = "content";
|
|
$this->template = "login/logout.tpl";
|
|
$this->layout = "common/layout";
|
|
|
|
$request = Registry::get('request');
|
|
|
|
$db = Registry::get('db');
|
|
|
|
$this->load->model('user/auth');
|
|
|
|
$this->document->title = $this->data['text_logout'];
|
|
|
|
if(ENABLE_SAAS == 1) {
|
|
$this->load->model('saas/customer');
|
|
$this->model_saas_customer->offline(Registry::get('username'));
|
|
}
|
|
|
|
logout();
|
|
|
|
$this->render();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|