mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
12 lines
311 B
PHP
12 lines
311 B
PHP
<?php
|
|
|
|
function xmldb_repository_upload_install() {
|
|
global $CFG;
|
|
$result = true;
|
|
require_once($CFG->dirroot.'/repository/lib.php');
|
|
$upload_plugin = new repository_type('upload', array(), true);
|
|
if (!$id = $upload_plugin->create(true)) {
|
|
$result = false;
|
|
}
|
|
return $result;
|
|
}
|