mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-04-05 01:20:32 +02:00
30 lines
460 B
PHP
30 lines
460 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'];
|
|
|
|
logout();
|
|
|
|
$this->render();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|