Files
FHC-Core/application/controllers/CisHtml/Dashboard.php
T
2024-08-12 14:24:37 +02:00

34 lines
506 B
PHP
Executable File

<?php
if (! defined('BASEPATH')) exit('No direct script access allowed');
/**
*
*/
class Dashboard extends Auth_Controller
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct(
array(
'index' => 'user:r'
)
);
}
// -----------------------------------------------------------------------------------------------------------------
// Public methods
/**
* @return void
*/
public function index()
{
$this->load->view('CisHtml/Dashboard.php');
}
}