mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 17:59:22 +02:00

More flexibility and additions on the dashboard modules. -Statistics: Accounts, Players, Monsters, Guilds, Houses -Website Status: Maintenance -Server Status: name, client, map, monsters loaded, MOTD, default: 'admin_panel_modules' => 'statistics,web_status,server_status,lastlogin,created,points,coins,balance',
11 lines
254 B
PHP
11 lines
254 B
PHP
<?php
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
|
|
$twig->display('web_status.twig', array(
|
|
'is_closed' => $is_closed,
|
|
'closed_message' => $closed_message,
|
|
'status' => $status,
|
|
'account_type' => USE_ACCOUNT_NAME ? 'name' : 'number'
|
|
));
|
|
?>
|