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


PHP file_storage::get_area_files方法代碼示例

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


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

示例1: copy_area_files

 /**
  * Copy all the files from one file area to another.
  *
  * @param file_storage $fs - The source context id
  * @param int $fromcontextid - The source context id
  * @param string $fromcomponent - The source component
  * @param string $fromfilearea - The source filearea
  * @param int $fromitemid - The source item id
  * @param int $tocontextid - The destination context id
  * @param string $tocomponent - The destination component
  * @param string $tofilearea - The destination filearea
  * @param int $toitemid - The destination item id
  * @return boolean
  */
 private function copy_area_files(file_storage $fs, $fromcontextid, $fromcomponent, $fromfilearea, $fromitemid, $tocontextid, $tocomponent, $tofilearea, $toitemid)
 {
     $newfilerecord = new stdClass();
     $newfilerecord->contextid = $tocontextid;
     $newfilerecord->component = $tocomponent;
     $newfilerecord->filearea = $tofilearea;
     $newfilerecord->itemid = $toitemid;
     if ($files = $fs->get_area_files($fromcontextid, $fromcomponent, $fromfilearea, $fromitemid)) {
         foreach ($files as $file) {
             if ($file->is_directory() and $file->get_filepath() === '/') {
                 // We need a way to mark the age of each draft area.
                 // By not copying the root dir we force it to be created
                 // automatically with current timestamp.
                 continue;
             }
             $newfile = $fs->create_file_from_storedfile($newfilerecord, $file);
         }
     }
     return true;
 }
開發者ID:eugeneventer,項目名稱:o365-moodle,代碼行數:34,代碼來源:locallib.php

示例2: replace_files_from_to

 /**
  * Replace the area files in the specified area with those in the source item id.
  *
  * @param \file_storage $fs The file storage class
  * @param int $contextid The ID of the context for the setaskment.
  * @param int $sourceitemid The itemid to copy from - typically the source grade id.
  * @param int $itemid The itemid to copy to - typically the target grade id.
  * @param string $area The file storage area.
  * @param bool $includesubdirs Whether to copy the content of sub-directories too.
  */
 public static function replace_files_from_to($fs, $contextid, $sourceitemid, $itemid, $area, $includesubdirs = false)
 {
     $component = 'setaskfeedback_editpdf';
     // Remove the existing files within this area.
     $fs->delete_area_files($contextid, $component, $area, $itemid);
     // Copy the files from the source area.
     if ($files = $fs->get_area_files($contextid, $component, $area, $sourceitemid, "filename", $includesubdirs)) {
         foreach ($files as $file) {
             $newrecord = new \stdClass();
             $newrecord->contextid = $contextid;
             $newrecord->itemid = $itemid;
             $fs->create_file_from_storedfile($newrecord, $file);
         }
     }
 }
開發者ID:krzpassrl,項目名稱:SRL_Moodle_db,代碼行數:25,代碼來源:page_editor.php


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