Files
ops-Gazelle/sections/comments/index.php
2025-05-23 14:41:16 +02:00

17 lines
404 B
PHP

<?php
declare(strict_types=1);
namespace Gazelle;
require_once match ($_REQUEST['action'] ?? null) {
'get' => 'get.php',
'jump' => 'jump.php',
'take_delete' => 'delete_handle.php',
'take_edit' => 'edit_handle.php',
'take_post' => 'post_handle.php',
'take_warn' => 'warn_handle.php',
'warn' => 'warn.php',
default => 'comments.php',
};