addition(InfoTerminal): adds the Infoterminal page to the cis4

This commit is contained in:
SimonGschnell
2025-01-27 11:50:51 +01:00
parent 467072b94e
commit 8afc2ab433
3 changed files with 47 additions and 1 deletions
@@ -0,0 +1,30 @@
<?php
if (! defined('BASEPATH')) exit('No direct script access allowed');
/**
*
*/
class InfoTerminal extends Auth_Controller
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct([
'index' => ['basis/cis:r'],
]);
}
// -----------------------------------------------------------------------------------------------------------------
// Public methods
/**
* @return void
*/
public function index()
{
$this->load->view('Cis/InfoTerminal.php', []);
}
}