mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
35 lines
684 B
PHP
35 lines
684 B
PHP
<?php
|
|
|
|
if (!defined('BASEPATH'))
|
|
exit('No direct script access allowed');
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class OtherLvPlan extends Auth_Controller
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct([
|
|
'index' => ['basis/other_lv_plan:r']
|
|
]);
|
|
|
|
// Load Config
|
|
$this->load->config('calendar');
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
// Public methods
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->load->view('CisRouterView/CisRouterView.php', ['route' => 'OtherLvPlan']);
|
|
}
|
|
}
|