This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
misuzu-interim/public-legacy/manage/general/index.php

19 lines
594 B
PHP
Raw Permalink Normal View History

2022-09-13 15:14:49 +02:00
<?php
namespace Misuzu;
2024-12-02 02:28:08 +00:00
if(!isset($msz) || !($msz instanceof \Misuzu\MisuzuContext))
die('Script must be called through the Misuzu route dispatcher.');
$counterInfos = $msz->counters->getCounters(orderBy: 'name');
$counterNamesRaw = $msz->config->getArray('counters.names');
$counterNamesCount = count($counterNamesRaw);
$counterNames = [];
for($i = -1; $i < $counterNamesCount;)
$counterNames[$counterNamesRaw[++$i] ?? ''] = $counterNamesRaw[++$i] ?? '';
2022-09-13 15:14:49 +02:00
Template::render('manage.general.overview', [
'counter_infos' => $counterInfos,
'counter_names' => $counterNames,
2022-09-13 15:14:49 +02:00
]);