removes debugging prints

This commit is contained in:
SimonGschnell
2024-08-12 14:24:37 +02:00
parent 8232224b21
commit cce58fdc31
3 changed files with 2 additions and 8 deletions
@@ -18,9 +18,6 @@ class Dashboard extends Auth_Controller
)
);
$this->load->library("PhrasesLib");
$this->loadPhrases(array('global'));
}
// -----------------------------------------------------------------------------------------------------------------
@@ -31,6 +28,6 @@ class Dashboard extends Auth_Controller
*/
public function index()
{
$this->load->view('CisHtml/Dashboard.php',["test"=>$this->p->t('global/digitalesAnwManagement')]);
$this->load->view('CisHtml/Dashboard.php');
}
}
+1 -2
View File
@@ -1,7 +1,6 @@
<?php
$includesArray = array(
'title' => 'Dashboard',
'phrases'=> array('global'),
'tabulator5'=>true,
'customJSModules' => ['public/js/apps/Dashboard/Fhc.js'],
'customCSSs' => [
@@ -13,7 +12,7 @@ $this->load->view('templates/CISHTML-Header', $includesArray);
?>
<div id="content">
<h2>Dashboard </h2>
<h2>Dashboard</h2>
<hr>
<fhc-dashboard dashboard="CIS"/>
</div>