20 lines
274 B
PHP
20 lines
274 B
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Logout extends AGT_Controller {
|
|
|
|
|
|
function __construct() {
|
|
parent::__construct();
|
|
}
|
|
|
|
public function index() {
|
|
|
|
$this->load->view('home/start_page');
|
|
}
|
|
|
|
|
|
|
|
}
|