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>
@@ -63,8 +63,6 @@ export default {
</template>
<template #default>
<h1>{{$p.t('global','digitalesAnwManagement')}}</h1>
<div v-if="selectedMenu" class="d-flex flex-column h-100">
<div class="d-flex mb-2">
<button v-if="selectedMenu" @click="selectedMenu=null" class="btn btn-secondary me-2"><i class="fa fa-chevron-left"></i> Back</button>