1
0
plweb/functions.php
Anna Christina Naß f6717560c0 CORS korrigiert
2025-07-07 17:54:14 +02:00

18 lines
373 B
PHP

<?php
function return_success() {
return json_encode(['status' => 'success', 'message' => 'OK']);
}
function return_error($code, $msg) {
http_response_code($code);
return json_encode(['status' => 'error', 'message' => $msg]);
}
function twig_error($twig, $code, $msg) {
http_response_code($code);
return $twig->render('error.html.twig', [ 'error' => $msg ]);
}
?>