- New "admin dashboard" /admin page + login, #494

- New ESI scope for admin access
- New admin.log file for admin actions (kick, ban,..)
- New login status for characters
- improved cronJob exec time for systemData import (jump/kill data)
- Added PHP 64-bit check to /setup
This commit is contained in:
Exodus4D
2017-05-27 14:09:12 +02:00
parent cc4de64673
commit 5be1d3547a
44 changed files with 1428 additions and 437 deletions

View File

@@ -27,11 +27,12 @@ class Map extends Controller\AccessController {
/**
* event handler
* @param \Base $f3
* @param array $params
*/
function beforeroute(\Base $f3) {
function beforeroute(\Base $f3, $params) {
// set header for all routes
header('Content-type: application/json');
parent::beforeroute($f3);
parent::beforeroute($f3, $params);
}
/**