mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-02 12:19:20 +02:00
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'
|
|
));
|
|
?>
|