mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
working on simplefle
This commit is contained in:
@@ -7,11 +7,18 @@ class SimpleFLE extends CI_Controller {
|
||||
if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
|
||||
|
||||
$data['page_title'] = "Simple Fast Log Entry";
|
||||
|
||||
$footerData = [];
|
||||
$footerData['scripts'] = [
|
||||
'assets/js/moment.min.js',
|
||||
'assets/js/tempusdominus-bootstrap-4.min.js',
|
||||
'assets/js/datetime-moment.js',
|
||||
'assets/js/sections/simplefle.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/simplefle.js"))
|
||||
];
|
||||
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('simplefle/index');
|
||||
$this->load->view('interface_assets/footer');
|
||||
|
||||
$this->load->view('interface_assets/footer', $footerData);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user