Exemple #1
0
 /**
  * Creates a submission and then returns it.
  *
  * Called when this component receives an HTTP POST request to
  * /submission(/).
  * The request body should contain a JSON object representing the new submission.
  */
 public function addSubmission($callName, $input, $params = array())
 {
     $positive = function ($input) {
         // sets the new auto-increment id
         $obj = new Submission();
         $obj->setId($input[0]->getInsertId());
         return array("status" => 201, "content" => $obj);
     };
     return $this->_component->callSqlTemplate('out', dirname(__FILE__) . '/Sql/AddSubmission.sql', array('values' => $input->getInsertData()), 201, $positive, array(), 'Model::isProblem', array(new Submission()));
 }
                 } else {
                     // move assignment from tutor to tutor
                     $marking = new Marking();
                     $marking->setId($markingId);
                     $marking->setTutorId($selectedTutorID);
                     $markings[] = $marking;
                 }
             }
         }
     }
     // "unassigned" can't obtain proposals (-1 -> "unassiged")
     if ($selectedTutorID != -1) {
         foreach ($proposals as $props) {
             // assign to selected tutor
             $sub = new Submission();
             $sub->setId($props);
             $marking = new Marking();
             $marking->setSubmission($sub);
             $marking->setStatus(1);
             $marking->setTutorId($selectedTutorID);
             $markings[] = $marking;
         }
     }
 }
 $URI = $serverURI . "/logic/LMarking/marking";
 http_post_data($URI, Marking::encodeMarking($markings), true, $message);
 if ($message == "201" || $message == "200") {
     $msg = Language::Get('main', 'successAssignment', $langTemplate);
     $assignManuallyNotifications[] = MakeNotification("success", $msg);
 } else {
     $msg = Language::Get('main', 'errorAssignment', $langTemplate);