mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-02 06:27:50 -05:00
21 lines
246 B
PHP
21 lines
246 B
PHP
<?php
|
|
require_once ("Secure_area.php");
|
|
|
|
class Home extends Secure_area
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
function index()
|
|
{
|
|
$this->load->view("home");
|
|
}
|
|
|
|
function logout()
|
|
{
|
|
$this->Employee->logout();
|
|
}
|
|
}
|
|
?>
|