37 lines
1,017 B
PHP
37 lines
1,017 B
PHP
<?php
|
|
|
|
return [
|
|
'pattern' => 'request-project-creation.json',
|
|
'method' => 'POST',
|
|
'action' => function () {
|
|
$json = file_get_contents('php://input');
|
|
$data = json_decode($json);
|
|
|
|
$client = kirby()->user()->client()->toPage()->uuid();
|
|
|
|
$projectData = [
|
|
"slug" => esc(Str::slug($data->title)),
|
|
"template" => "project",
|
|
"content" => [
|
|
"title" => esc($data->title),
|
|
"requestDetails" => esc("Demande de " . kirby()->user()->name() . " (" . kirby()->user()->email() . ") : \n\n" . $data->details),
|
|
"client" => [$client],
|
|
"isClientRequest" => "true",
|
|
"isDTLEnabled" => esc($data->isDTLEnabled)
|
|
]
|
|
];
|
|
|
|
$projects = page("projects");
|
|
try {
|
|
$projects->createChild($projectData);
|
|
return [
|
|
"status" => "success",
|
|
];
|
|
} catch (\Throwable $th) {
|
|
return [
|
|
"status" => "error",
|
|
"message" => $th->getMessage() . " in " . $th->getFile() . " line " . $th->getLine()
|
|
];
|
|
}
|
|
}
|
|
];
|