Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xyulex/bc31c92a10bf3dd9362b0425a0225eb5 to your computer and use it in GitHub Desktop.
Save xyulex/bc31c92a10bf3dd9362b0425a0225eb5 to your computer and use it in GitHub Desktop.
MOODLE: Descargar fichero externo y grabarlo en el Moodle
<?php
$record = new StdClass();
$record->course = $courseid;
$record->contextid = $usercontextid;
$record->userid = $USER->id;
$record->component = 'user';
$record->filearea = 'draft';
$record->itemid = $draftitemid;
$record->filename = $scormFilename;
$record->filepath = '/';
$fgc = file_get_contents($'http://www.raul.com/wp-content/'.$scormFilename);
if ($fgc) {
$fs->create_file_from_string($record, $fgc); // Guardar
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment