mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 10:26:40 +02:00
Merge branch 'w50_MDL-30623_m22_guest' of git://github.com/skodak/moodle into MOODLE_22_STABLE
This commit is contained in:
commit
a33d85b374
4 changed files with 95 additions and 1 deletions
35
enrol/guest/db/install.php
Normal file
35
enrol/guest/db/install.php
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<?php
|
||||||
|
// This file is part of Moodle - http://moodle.org/
|
||||||
|
//
|
||||||
|
// Moodle is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// Moodle is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Guest enrol plugin installation.
|
||||||
|
*
|
||||||
|
* @package enrol
|
||||||
|
* @subpackage guest
|
||||||
|
* @copyright 2011 Petr Skoda {@link http://skodak.org}
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
function xmldb_enrol_guest_install() {
|
||||||
|
global $CFG, $DB;
|
||||||
|
|
||||||
|
// migrate settings during 2.0 upgrade
|
||||||
|
|
||||||
|
// convert all null passwords to empty strings
|
||||||
|
$DB->set_field('enrol', 'password', '', array('enrol'=>'guest', 'password'=>null));
|
||||||
|
}
|
43
enrol/guest/db/upgrade.php
Normal file
43
enrol/guest/db/upgrade.php
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
<?php
|
||||||
|
// This file is part of Moodle - http://moodle.org/
|
||||||
|
//
|
||||||
|
// Moodle is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// Moodle is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This file keeps track of upgrades to the guest enrolment plugin
|
||||||
|
*
|
||||||
|
* @package enrol
|
||||||
|
* @subpackage guest
|
||||||
|
* @copyright 2011 Petr Skoda {@link http://skodak.org
|
||||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
function xmldb_enrol_guest_upgrade($oldversion) {
|
||||||
|
global $CFG, $DB, $OUTPUT;
|
||||||
|
|
||||||
|
$dbman = $DB->get_manager();
|
||||||
|
|
||||||
|
if ($oldversion < 2011112901) {
|
||||||
|
// convert all null passwords to empty strings
|
||||||
|
$DB->set_field('enrol', 'password', '', array('enrol'=>'guest', 'password'=>null));
|
||||||
|
|
||||||
|
upgrade_plugin_savepoint(true, 2011112901, 'enrol', 'guest');
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -327,6 +327,22 @@ class enrol_guest_plugin extends enrol_plugin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add new instance of enrol plugin.
|
||||||
|
* @param object $course
|
||||||
|
* @param array instance fields
|
||||||
|
* @return int id of new instance, null if can not be created
|
||||||
|
*/
|
||||||
|
public function add_instance($course, array $fields = NULL) {
|
||||||
|
$fields = (array)$fields;
|
||||||
|
|
||||||
|
if (!isset($fields['password'])) {
|
||||||
|
$fields['password'] = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
return parent::add_instance($course, $fields);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add new instance of enrol plugin with default settings.
|
* Add new instance of enrol plugin with default settings.
|
||||||
* @param object $course
|
* @param object $course
|
||||||
|
|
|
@ -25,6 +25,6 @@
|
||||||
|
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
$plugin->version = 2011112900; // The current plugin version (Date: YYYYMMDDXX)
|
$plugin->version = 2011112901; // The current plugin version (Date: YYYYMMDDXX)
|
||||||
$plugin->requires = 2011112900; // Requires this Moodle version
|
$plugin->requires = 2011112900; // Requires this Moodle version
|
||||||
$plugin->component = 'enrol_guest'; // Full name of the plugin (used for diagnostics)
|
$plugin->component = 'enrol_guest'; // Full name of the plugin (used for diagnostics)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue