Prepare rebase: move files to new folder structure

This commit is contained in:
jekkos
2022-11-11 23:40:25 +01:00
parent a312434b87
commit eed0cd1ca0
225 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?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();
}
}
?>