Skip to content

Commit

Permalink
Merge pull request #174 from basoro/mlite
Browse files Browse the repository at this point in the history
Update ke 4.0.7
  • Loading branch information
basoro authored May 25, 2024
2 parents ef6f9a7 + a5aca89 commit 2b8f210
Show file tree
Hide file tree
Showing 63 changed files with 32,657 additions and 472 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins/desktop
plugins/kasir
plugins/dokter_radiologi
plugins/dokter_ulun
#plugins/satu_sehat
plugins/reg_periksa
plugins/khanza
plugins/pasien_galleries
plugins/cssd
Expand All @@ -33,11 +33,11 @@ plugins/utd/Site.php
plugins/utd/view/adonan.html
websocket
plugins/khanza.zip
plugins/dokter_ulun
plugins/khanza
plugins/pasien_galleries


.env
logs/
config.php
workerman.php
20 changes: 18 additions & 2 deletions admin/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,26 @@
$url = array_merge([ADMIN], $arrayURL);
redirect(url($url));
}
redirect(url([ADMIN, 'dashboard', 'main']));
if(MULTI_APP) {
if(!empty(MULTI_APP_REDIRECT)) {
redirect(url([ADMIN, MULTI_APP_REDIRECT, 'main']));
} else {
redirect(url([ADMIN, 'dashboard', 'main']));
}
} else {
redirect(url([ADMIN, 'dashboard', 'main']));
}
}
}
$core->drawTheme('login.html');
if(MULTI_APP) {
if(!empty(MULTI_APP_REDIRECT)) {
echo $core->tpl->draw(MODULES.'/'.MULTI_APP_REDIRECT.'/view/login.html', true);
} else {
$core->drawTheme('login.html');
}
} else {
$core->drawTheme('login.html');
}

}

Expand Down
27 changes: 27 additions & 0 deletions assets/css/datatables.min.css

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions assets/jscripts/datatables.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 2b8f210

Please sign in to comment.