mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
17 lines
404 B
PHP
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',
|
|
};
|