2024-08-12 11:12:24 +00:00
|
|
|
<?php
|
|
|
|
|
2024-08-18 19:12:45 +00:00
|
|
|
$action = $_REQUEST['action'] ?? '';
|
|
|
|
|
|
|
|
switch ($action) {
|
|
|
|
|
|
|
|
case 'edit':
|
|
|
|
include('../app/templates/config-edit-platform.php');
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
include('../app/templates/config-list.php');
|
|
|
|
}
|
2024-08-12 11:12:24 +00:00
|
|
|
|
|
|
|
?>
|