当前位置: 首页>>代码示例>>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;未经允许,请勿转载。