mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-02 06:27:50 -05:00
23 lines
371 B
PHP
23 lines
371 B
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
require_once("Secure_Controller.php");
|
|
|
|
class Office extends Secure_Controller
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct('office', NULL, 'office');
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$this->load->view('home/office');
|
|
}
|
|
|
|
public function logout()
|
|
{
|
|
$this->Employee->logout();
|
|
}
|
|
}
|
|
?>
|