mirror of
https://github.com/NamelessMC/Nameless
synced 2026-08-18 06:29:04 -04:00
* Add Smarty and Twig template engines * Update composer.json * Convert Widgets class to template engine and PHPStan fixes * Fix widget initialisation * Fix panel widget initialisation * chore: remove debug return * feat: convert 403/404 pages to new template system and general tidy * chore: style fixes * feat: update latest pages to new template engine * feat: template base should not be nullable in onPageLoad * feat: set template base directory upon initialisation and allow custom smarty security directories * chore: fix style
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Status page
|
|
*
|
|
* @author Samerton
|
|
* @license MIT
|
|
* @version 2.2.0
|
|
*
|
|
* @var Cache $cache
|
|
* @var FakeSmarty $smarty
|
|
* @var Language $language
|
|
* @var Navigation $cc_nav
|
|
* @var Navigation $navigation
|
|
* @var Navigation $staffcp_nav
|
|
* @var Pages $pages
|
|
* @var TemplateBase $template
|
|
* @var User $user
|
|
* @var Widgets $widgets
|
|
*/
|
|
|
|
if (!Settings::get('mc_integration') || !Settings::get('status_page')) {
|
|
require_once ROOT_PATH . '/403.php';
|
|
die();
|
|
}
|
|
|
|
const PAGE = 'status';
|
|
$page_title = $language->get('general', 'status');
|
|
require_once ROOT_PATH . '/core/templates/frontend_init.php';
|
|
|
|
$servers = DB::getInstance()->orderWhere('mc_servers', 'display = 1', '`order`', 'ASC')->results();
|
|
|
|
$template->getEngine()->addVariables(
|
|
[
|
|
'STATUS' => $language->get('general', 'status'),
|
|
'IP' => $language->get('general', 'ip'),
|
|
'TABLE_STATUS' => $language->get('general', 'table_status'),
|
|
'DEFAULT_STATUS' => ($result ?? null),
|
|
'SERVERS' => $servers,
|
|
'NO_SERVERS' => $language->get('general', 'no_servers'),
|
|
'BUNGEE' => $language->get('general', 'bungee_instance'),
|
|
'ERROR_TITLE' => $language->get('general', 'error')
|
|
]
|
|
);
|
|
|
|
// Load modules + template
|
|
Module::loadPage($user, $pages, $cache, $smarty, [$navigation, $cc_nav, $staffcp_nav], $widgets, $template);
|
|
|
|
$template->onPageLoad();
|
|
|
|
require ROOT_PATH . '/core/templates/navbar.php';
|
|
require ROOT_PATH . '/core/templates/footer.php';
|
|
|
|
// Display template
|
|
$template->displayTemplate('status');
|