Game-Jaming/Backend/Controllers/GameJam/UpdateGameJam.php

38 lines
1.1 KiB
PHP
Raw Normal View History

2021-03-09 09:45:05 +00:00
<?php
require_once "../../../bootstrap.php";
2021-03-12 10:10:14 +00:00
require_once "../Admin/Admin.php";
2021-03-09 09:45:05 +00:00
use Backend\Models\GameJam;
if(isAdmin()){
if(isset($_POST['updateGameJam'])) {
$gameJam = GameJam::find($_POST['gameJamId']);
2021-03-09 09:45:05 +00:00
if($gameJam){
2021-03-12 10:10:14 +00:00
$gameJam->name = $_POST['gameJamName'];
2021-03-09 09:45:05 +00:00
$gameJam->start_time = $_POST["startDate"]."T".$_POST["startTime"];
2021-03-09 09:45:05 +00:00
$gameJam->end_time = $_POST["endDate"]."T".$_POST["endTime"];
2021-03-09 09:45:05 +00:00
2021-03-12 10:10:14 +00:00
if (!empty($_POST['keyWord'])) {
$gameJam->key_word = $_POST['keyWord'];
2021-03-12 10:10:14 +00:00
}else{
$gameJam->key_word = null;
2021-03-09 09:45:05 +00:00
}
$gameJam->description = $_POST['description'];
if ($gameJam->save()) {
2021-03-17 08:43:09 +00:00
header("location: ../../../Frontend/Html/AdminPage.html?success=UpdatedFile");
exit();
2021-03-09 09:45:05 +00:00
}
}
2021-03-17 08:43:09 +00:00
}else{
header("location: ../../../Frontend/Html/AdminPage.html?error=FailedToUpdatedGameJam");
exit();
2021-03-09 09:45:05 +00:00
}
2021-03-17 08:43:09 +00:00
}else{
header("location: ../../../Frontend/index.html?error=NotAdmin");
exit();
2021-03-09 09:45:05 +00:00
}