diff options
author | Valentin Popov <info@valentineus.link> | 2018-10-22 02:14:31 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-10-22 02:48:04 +0300 |
commit | 99c835a63d806874e943273dfb0afa3465fe1d92 (patch) | |
tree | 1df85c1a1d573040ac90fcabe83acbd559ee51fe /db/upgrade.php | |
parent | 14e5a16a338405b6dd7c38916ae362501e0d4ff6 (diff) | |
download | local_webhooks-99c835a63d806874e943273dfb0afa3465fe1d92.tar.xz local_webhooks-99c835a63d806874e943273dfb0afa3465fe1d92.zip |
Correction of implicit style errors
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'db/upgrade.php')
-rw-r--r-- | db/upgrade.php | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/db/upgrade.php b/db/upgrade.php index 1325a58..968c32e 100644 --- a/db/upgrade.php +++ b/db/upgrade.php @@ -27,41 +27,43 @@ defined('MOODLE_INTERNAL') || die(); /** * Function to upgrade 'local_webhooks'. * - * @param int $oldversion + * @param int $old_version * * @return boolean * @throws \dml_exception * @throws \downgrade_exception * @throws \upgrade_exception */ -function xmldb_local_webhooks_upgrade($oldversion = 0) { +function xmldb_local_webhooks_upgrade($old_version = 0) { global $DB; /* Update from versions 3.* */ - if ($oldversion < 2017112600 || $oldversion === 2018061900) { + if ($old_version < 2017112600 || $old_version === 2018061900) { $rs = $DB->get_recordset('local_webhooks_service', null, 'id', '*', 0, 0); + foreach ($rs as $record) { if (!empty($record->events)) { $record->events = unserialize(gzuncompress(base64_decode($record->events))); - // TODO: This method does not exist - // local_webhooks_update_record( $record ); + // TODO: This method does not exist. + /* local_webhooks_update_record( $record ); */ } } + $rs->close(); upgrade_plugin_savepoint(true, 2017112600, 'local', 'webhooks'); } /* Update from version 4.0.0-rc.1 */ - if ($oldversion === 2017122900) { - } + + /* if ($old_version === 2017122900) {} */ /* Update from version 4.0.0-rc.2 */ - if ($oldversion === 2018022200) { - } + + /* if ($old_version === 2018022200) {} */ /* Update from version 4.0.0-rc.3 */ - if ($oldversion === 2018022500) { - } + + /* if ($old_version === 2018022500) {} */ return true; }
\ No newline at end of file |