fixed some stuff

This commit is contained in:
neerholt
2021-03-11 13:20:10 +01:00
parent 0e343cb46e
commit 1d1606ff13
8 changed files with 72 additions and 9 deletions
@@ -1,5 +1,6 @@
<?php
require "../../bootstrap.php";
require "../../../bootstrap.php";
require_once "../Group/Group.php";
use Backend\Models\Group;
use Backend\Models\KeyWord;
@@ -8,10 +9,10 @@ session_start();
if (session_status() === PHP_SESSION_ACTIVE) {
if(isset($_POST['submitKeyWord'])){
//Find the group id
$group = Group::find($_SESSION['groupId']);
$group = groupViaToken($_SESSION['token']);
//if statement to find out if the group have use all their keyWords
if(KeyWord::where('group_id', $group->id)->count()<$group->groupAmount){
if(KeyWord::where('group_id', $group->id)->count()<$group->group_amount){
//Make a new keyword[Only to be used if you need to make a new of something]
$keyword = new KeyWord();
@@ -24,9 +25,9 @@ if (session_status() === PHP_SESSION_ACTIVE) {
//Try to save it
if(!$keyword->save()){
header("location: ../Frontend/index.php?created=failed");
header("location: ../../../Frontend/index.php?created=failed");
}else{
header("location: ../Frontend/index.php?created=success");
header("location:../../../Frontend/index.php?created=success");
}
}