mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-01 14:07:54 -05:00
Tom git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
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();
|
|
}
|
|
}
|
|
?>
|