18 lines
333 B
PHP
18 lines
333 B
PHP
<?php
|
|
|
|
namespace MingTsay\Akanyan;
|
|
|
|
class LogsViewer extends FileViewer
|
|
{
|
|
protected static bool $orderDesc = true;
|
|
|
|
protected static function directory(): string
|
|
{
|
|
return '/media/sdc/mt/minecraft-docker-image/data/logs';
|
|
}
|
|
|
|
protected static function whitelist(): ?array
|
|
{
|
|
return null;
|
|
}
|
|
}
|