mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
"REPOSITORY, UPGRADE/MDL-18354, upgrade/install repository plugins using moodle hook"
This commit is contained in:
parent
f13ffcd556
commit
8763ab760b
8 changed files with 48 additions and 0 deletions
|
@ -106,6 +106,7 @@ function get_plugin_types() {
|
||||||
'coursereport' => 'course/report',
|
'coursereport' => 'course/report',
|
||||||
'report' => $CFG->admin.'/report',
|
'report' => $CFG->admin.'/report',
|
||||||
'portfolio' => 'portfolio/type',
|
'portfolio' => 'portfolio/type',
|
||||||
|
'repository' => 'repository',
|
||||||
|
|
||||||
// following types a very ugly hacks - we should not make exceptions like this - all plugins should be equal;
|
// following types a very ugly hacks - we should not make exceptions like this - all plugins should be equal;
|
||||||
// these plugins may cause problems such as when wanting to uninstall them
|
// these plugins may cause problems such as when wanting to uninstall them
|
||||||
|
|
|
@ -1831,4 +1831,5 @@ function repository_setup_default_plugins() {
|
||||||
if (is_int($local_plugin_id) or is_int($upload_plugin_id)) {
|
if (is_int($local_plugin_id) or is_int($upload_plugin_id)) {
|
||||||
print_box(get_string('setupdefaultplugins', 'repository'));
|
print_box(get_string('setupdefaultplugins', 'repository'));
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
12
repository/local/db/install.php
Normal file
12
repository/local/db/install.php
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
function xmldb_repository_local_install() {
|
||||||
|
global $CFG;
|
||||||
|
$result = true;
|
||||||
|
require_once($CFG->dirroot.'/repository/lib.php');
|
||||||
|
$local_plugin = new repository_type('local', array(), true);
|
||||||
|
if(!$id = $local_plugin->create(true)) {
|
||||||
|
$result = false;
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
9
repository/local/db/upgrade.php
Normal file
9
repository/local/db/upgrade.php
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?php
|
||||||
|
function xmldb_repository_local_upgrade($oldversion) {
|
||||||
|
$result = true;
|
||||||
|
/**
|
||||||
|
if ($result && $oldversion < 2009031000) {
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
return $result;
|
||||||
|
}
|
2
repository/local/version.php
Normal file
2
repository/local/version.php
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<?php
|
||||||
|
$plugin->version = 2009031000;
|
12
repository/upload/db/install.php
Normal file
12
repository/upload/db/install.php
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<?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;
|
||||||
|
}
|
9
repository/upload/db/upgrade.php
Normal file
9
repository/upload/db/upgrade.php
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?php
|
||||||
|
function xmldb_repository_upload_upgrade($oldversion) {
|
||||||
|
$result = true;
|
||||||
|
/**
|
||||||
|
if ($result && $oldversion < 2009031000) {
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
return $result;
|
||||||
|
}
|
2
repository/upload/version.php
Normal file
2
repository/upload/version.php
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<?php
|
||||||
|
$plugin->version = 2009031000;
|
Loading…
Add table
Add a link
Reference in a new issue