Beispiel #1
0
    $id = $request->data['id'];
    TrainingTracker::merit_remove($id);
});
respond('POST', '/merit', function ($request, $responce, $app) {
    $type = $request->data['type'];
    $comments = $request->data['comments'];
    $wpid = $request->data['wpid'];
    if (TrainingTracker::valid_wpid($wpid)) {
        $comments = htmlentities($comments);
        $comments = stripslashes($comments);
        $comments = trim($comments);
        if ($type == 'star' || $type == 'dog-house') {
            $checklist_id = TrainingTracker::get_checklist_id($wpid);
            // If they don't have a checklist, most likely a mentor
            if (!$checklist_id) {
                $user_type = TrainingTracker::level_translation(TrainingTracker::get_user_level($wpid));
                TrainingTracker::checklist_insert($wpid, $user_type);
                $checklist_id = TrainingTracker::get_checklist_id($wpid);
            }
            if ($type == 'star') {
                $type = 'merit';
            } else {
                $type = 'demerit';
            }
            $updated_by = $app->user->pidm;
            $item_id = 42;
            TrainingTracker::merit_insert($item_id, $checklist_id, $type, $comments, $updated_by);
            $last_insert_id = TrainingTracker::last_insert_id();
            $data = array('id' => $last_insert_id);
            // echoed for ajax to pickup and use.
            echo json_encode($data);