當前位置: 首頁>>代碼示例>>PHP>>正文


PHP question_usage_by_activity::start_question方法代碼示例

本文整理匯總了PHP中question_usage_by_activity::start_question方法的典型用法代碼示例。如果您正苦於以下問題:PHP question_usage_by_activity::start_question方法的具體用法?PHP question_usage_by_activity::start_question怎麽用?PHP question_usage_by_activity::start_question使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在question_usage_by_activity的用法示例。


在下文中一共展示了question_usage_by_activity::start_question方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: test_question

 /**
  * Run this test against a particular question.
  * @param question_usage_by_activity $quba the useage to use when running the test.
  * @param qtype_stack_question $question the question to test.
  * @param int $seed the random seed to use.
  * @return stack_question_test_result the test results.
  */
 public function test_question(question_usage_by_activity $quba, qtype_stack_question $question, $seed)
 {
     $slot = $quba->add_question($question, $question->defaultmark);
     $quba->start_question($slot, $seed);
     $response = self::compute_response($question, $this->inputs);
     $quba->process_action($slot, $response);
     $results = new stack_question_test_result($this);
     foreach ($this->inputs as $inputname => $notused) {
         $inputstate = $question->get_input_state($inputname, $response);
         // The _val below is a hack.  Not all inputnames exist explicitly in
         // the response, but the _val does. Some inputs, e.g. matrices have
         // many entries in the response so none match $response[$inputname].
         if (array_key_exists($inputname, $response)) {
             $inputresponse = $response[$inputname];
         } else {
             $inputresponse = $response[$inputname . '_val'];
         }
         $results->set_input_state($inputname, $inputresponse, $inputstate->contentsdisplayed, $inputstate->status, $inputstate->errors);
     }
     foreach ($this->expectedresults as $prtname => $expectedresult) {
         $result = $question->get_prt_result($prtname, $response, false);
         $results->set_prt_result($prtname, $result);
     }
     return $results;
 }
開發者ID:sowirepo,項目名稱:moodle-qtype_stack,代碼行數:32,代碼來源:questiontest.php

示例2: start_attempt_at_question

 protected function start_attempt_at_question($question, $preferredbehaviour, $maxmark = null, $variant = 1)
 {
     $this->quba->set_preferred_behaviour($preferredbehaviour);
     $this->slot = $this->quba->add_question($question, $maxmark);
     $this->quba->start_question($this->slot, $variant);
 }
開發者ID:gabrielrosset,項目名稱:moodle,代碼行數:6,代碼來源:helpers.php


注:本文中的question_usage_by_activity::start_question方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。