Files
opensourcepos/application/controllers/Home.php
sonnysk76 9f7ea6f1cb merging
2016-06-10 16:58:26 -05:00

22 lines
348 B
PHP

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
require_once("Secure_Controller.php");
class Home extends Secure_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->load->view('home');
}
public function logout()
{
$this->Employee->logout();
}
}
?>