Work on 08/05/2023 morning

This commit is contained in:
imnavajas
2023-05-08 15:11:08 +02:00
parent 81ef01dc01
commit 7e62ba3924
8 changed files with 874 additions and 33 deletions

View File

@ -31,7 +31,14 @@ class Home extends BaseController
else
$salutation = lang("App.dashboard_good_night");
switch ($session->get('dashboard')):
echo view(getenv('theme.path').'main/all');
//echo view(getenv('theme.path').'main/header');
//echo view(getenv('theme.path').'main/menu');
//echo view(getenv('theme.path').'form/dashboard/index');
//echo view(getenv('theme.path').'main/footer');
/*switch ($session->get('dashboard')):
case 'admin':
$data['title'] = [
'module' => lang("App.dashboard_hello").' '.$name,
@ -148,5 +155,6 @@ class Home extends BaseController
echo view(getenv('theme.path').'form/dashboard/index');
echo view(getenv('theme.path').'main/footer');
endswitch;
*/
}
}