Files
codefever/application/controllers/home.php
2022-01-13 10:34:16 +08:00

21 lines
352 B
PHP
Executable File

<?php
require_once APPPATH . '/controllers/base.php';
class Home extends Base
{
public function __construct()
{
parent::__construct();
}
public function index()
{
if ($this->getLoggedKey()) {
return header('Location: /repositories');
}
return header('Location: /user/login');
}
}