22 lines
387 B
PHP
22 lines
387 B
PHP
<?php
|
|
|
|
/*
|
|
Alphaland 2021
|
|
*/
|
|
|
|
//headers
|
|
header("Access-Control-Allow-Origin: https://www.alphaland.cc");
|
|
header("access-control-allow-credentials: true");
|
|
|
|
$data = json_decode(file_get_contents('php://input'));
|
|
|
|
if (!$data)
|
|
{
|
|
http_response_code(400);
|
|
}
|
|
else
|
|
{
|
|
$theme = $data->theme;
|
|
header('Content-Type: application/json');
|
|
echo json_encode(array("success" => setTheme($theme)));
|
|
} |