"REPOSITORY, UPGRADE/MDL-18354, upgrade/install repository plugins using moodle hook"

This commit is contained in:
dongsheng 2009-03-10 02:01:24 +00:00
parent f13ffcd556
commit 8763ab760b
8 changed files with 48 additions and 0 deletions

View file

@ -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

View file

@ -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;
} }

View 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;
}

View file

@ -0,0 +1,9 @@
<?php
function xmldb_repository_local_upgrade($oldversion) {
$result = true;
/**
if ($result && $oldversion < 2009031000) {
}
*/
return $result;
}

View file

@ -0,0 +1,2 @@
<?php
$plugin->version = 2009031000;

View 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;
}

View file

@ -0,0 +1,9 @@
<?php
function xmldb_repository_upload_upgrade($oldversion) {
$result = true;
/**
if ($result && $oldversion < 2009031000) {
}
*/
return $result;
}

View file

@ -0,0 +1,2 @@
<?php
$plugin->version = 2009031000;