Exemple #1
0
//  ================================
//  =========== TRAINING ===========
//  ================================
/**
 * Lists all trainings of a particular season
 * method GET
 * url /seasons/:seasonID/trainings
 */
$app->get('/trainings/seasons/:seasonID/', function ($seasonID) use($app) {
    global $user_id;
    $response = array();
    //if (in_array("admin", $app->jwt->roles)) {
    if (true) {
        $db = new DbHandler();
        // fetching all trainings
        $trainingResult = $db->getTrainingsBySeason($seasonID);
        $response["Error"] = false;
        $response["Trainings"] = array();
        // looping through result and preparing trainings array
        while ($training = $trainingResult->fetch_assoc()) {
            array_push($response["Trainings"], $training);
        }
        echoRespnse(200, $response);
    } else {
        echoRespnse(401, $response);
    }
});
/**
 * Lists all trainings of a particular season for a particular team
 * method GET
 * url /seasons/:seasonID/trainings