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


PHP question_type::move_files方法代碼示例

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


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

示例1: move_files

 public function move_files($questionid, $oldcontextid, $newcontextid)
 {
     $fs = get_file_storage();
     parent::move_files($questionid, $oldcontextid, $newcontextid);
     $this->move_files_in_answers($questionid, $oldcontextid, $newcontextid);
     $this->move_files_in_hints($questionid, $oldcontextid, $newcontextid);
 }
開發者ID:EmmanuelYupit,項目名稱:educursos,代碼行數:7,代碼來源:questiontype.php

示例2: move_files

 public function move_files($questionid, $oldcontextid, $newcontextid)
 {
     parent::move_files($questionid, $oldcontextid, $newcontextid);
     $fs = get_file_storage();
     $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'qtype_poodllrecording', 'graderinfo', $questionid);
 }
開發者ID:nadavkav,項目名稱:Moodle2-Hebrew-plugins,代碼行數:6,代碼來源:questiontype.php

示例3: move_files

 public function move_files($questionid, $oldcontextid, $newcontextid)
 {
     parent::move_files($questionid, $oldcontextid, $newcontextid);
     $this->move_files_in_answers($questionid, $oldcontextid, $newcontextid);
     $this->move_files_in_hints($questionid, $oldcontextid, $newcontextid);
 }
開發者ID:evltuma,項目名稱:moodle,代碼行數:6,代碼來源:questiontype.php

示例4: move_files

    public function move_files($questionid, $oldcontextid, $newcontextid) {
        global $DB;
        $fs = get_file_storage();

        parent::move_files($questionid, $oldcontextid, $newcontextid);

        $subquestionids = $DB->get_records_menu('question_match_sub',
                array('question' => $questionid), 'id', 'id,1');
        foreach ($subquestionids as $subquestionid => $notused) {
            $fs->move_area_files_to_new_context($oldcontextid,
                    $newcontextid, 'qtype_match', 'subquestion', $subquestionid);
        }

        $this->move_files_in_combined_feedback($questionid, $oldcontextid, $newcontextid);
    }
開發者ID:nigeldaley,項目名稱:moodle,代碼行數:15,代碼來源:questiontype.php

示例5: move_files

 public function move_files($questionid, $oldcontextid, $newcontextid)
 {
     $fs = get_file_storage();
     parent::move_files($questionid, $oldcontextid, $newcontextid);
     $this->move_files_in_answers($questionid, $oldcontextid, $newcontextid, true);
     $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'question', 'correctfeedback', $questionid);
     $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'question', 'incorrectfeedback', $questionid);
 }
開發者ID:parksandwildlife,項目名稱:learning,代碼行數:8,代碼來源:questiontype.php

示例6: move_files

 public function move_files($questionid, $oldcontextid, $newcontextid)
 {
     global $DB;
     $fs = get_file_storage();
     parent::move_files($questionid, $oldcontextid, $newcontextid);
     $this->move_files_in_hints($questionid, $oldcontextid, $newcontextid);
     $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'qtype_stack', 'specificfeedback', $questionid);
     $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'qtype_stack', 'prtcorrect', $questionid);
     $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'qtype_stack', 'prtpartiallycorrect', $questionid);
     $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'qtype_stack', 'prtincorrect', $questionid);
     $nodeids = $DB->get_records_menu('qtype_stack_prt_nodes', array('questionid' => $questionid), 'id', 'id,1');
     foreach ($nodeids as $nodeid => $notused) {
         $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'qtype_stack', 'prtnodetruefeedback', $nodeid);
         $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'qtype_stack', 'prtnodefalsefeedback', $nodeid);
     }
 }
開發者ID:profcab,項目名稱:moodle-qtype_stack,代碼行數:16,代碼來源:questiontype.php

示例7: move_files

 public function move_files($questionid, $oldcontextid, $newcontextid)
 {
     /* Thanks to Jean-Michel Vedrine for pointing out the need for this and delete_files function */
     parent::move_files($questionid, $oldcontextid, $newcontextid);
     $this->move_files_in_combined_feedback($questionid, $oldcontextid, $newcontextid);
     $this->move_files_in_hints($questionid, $oldcontextid, $newcontextid);
 }
開發者ID:dthies,項目名稱:moodle-qtype_gapfill,代碼行數:7,代碼來源:questiontype.php

示例8: move_files

 public function move_files($questionid, $oldcontextid, $newcontextid)
 {
     global $DB;
     $fs = get_file_storage();
     parent::move_files($questionid, $oldcontextid, $newcontextid);
 }
開發者ID:jacac,項目名稱:qtype_order,代碼行數:6,代碼來源:questiontype.php

示例9: move_files

 /**
  * Move all the files belonging to this question from one context to another.
  * Override superclass implementation to handle the extra data files
  * we have in CodeRunner questions.
  * @param int $questionid the question being moved.
  * @param int $oldcontextid the context it is moving from.
  * @param int $newcontextid the context it is moving to.
  */
 public function move_files($questionid, $oldcontextid, $newcontextid)
 {
     parent::move_files($questionid, $oldcontextid, $newcontextid);
     $fs = get_file_storage();
     $fs->move_area_files_to_new_context($oldcontextid, $newcontextid, 'qtype_coderunner', 'datafile', $questionid);
 }
開發者ID:pac,項目名稱:CodeRunner,代碼行數:14,代碼來源:questiontype.php


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