3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * Various upgrade/install related functions and classes.
23 * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') || die();
29 /** UPGRADE_LOG_NORMAL = 0 */
30 define('UPGRADE_LOG_NORMAL', 0);
31 /** UPGRADE_LOG_NOTICE = 1 */
32 define('UPGRADE_LOG_NOTICE', 1);
33 /** UPGRADE_LOG_ERROR = 2 */
34 define('UPGRADE_LOG_ERROR', 2);
37 * Exception indicating unknown error during upgrade.
41 * @copyright 2009 Petr Skoda {@link http://skodak.org}
42 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
44 class upgrade_exception extends moodle_exception {
45 function __construct($plugin, $version, $debuginfo=NULL) {
47 $a = (object)array('plugin'=>$plugin, 'version'=>$version);
48 parent::__construct('upgradeerror', 'admin', "$CFG->wwwroot/$CFG->admin/index.php", $a, $debuginfo);
53 * Exception indicating downgrade error during upgrade.
57 * @copyright 2009 Petr Skoda {@link http://skodak.org}
58 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
60 class downgrade_exception extends moodle_exception {
61 function __construct($plugin, $oldversion, $newversion) {
63 $plugin = is_null($plugin) ? 'moodle' : $plugin;
64 $a = (object)array('plugin'=>$plugin, 'oldversion'=>$oldversion, 'newversion'=>$newversion);
65 parent::__construct('cannotdowngrade', 'debug', "$CFG->wwwroot/$CFG->admin/index.php", $a);
72 * @copyright 2009 Petr Skoda {@link http://skodak.org}
73 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
75 class upgrade_requires_exception extends moodle_exception {
76 function __construct($plugin, $pluginversion, $currentmoodle, $requiremoodle) {
79 $a->pluginname = $plugin;
80 $a->pluginversion = $pluginversion;
81 $a->currentmoodle = $currentmoodle;
82 $a->requiremoodle = $requiremoodle;
83 parent::__construct('pluginrequirementsnotmet', 'error', "$CFG->wwwroot/$CFG->admin/index.php", $a);
90 * @copyright 2009 Petr Skoda {@link http://skodak.org}
91 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
93 class plugin_defective_exception extends moodle_exception {
94 function __construct($plugin, $details) {
96 parent::__construct('detectedbrokenplugin', 'error', "$CFG->wwwroot/$CFG->admin/index.php", $plugin, $details);
101 * Misplaced plugin exception.
103 * Note: this should be used only from the upgrade/admin code.
106 * @subpackage upgrade
107 * @copyright 2009 Petr Skoda {@link http://skodak.org}
108 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
110 class plugin_misplaced_exception extends moodle_exception {
113 * @param string $component the component from version.php
114 * @param string $expected expected directory, null means calculate
115 * @param string $current plugin directory path
117 public function __construct($component, $expected, $current) {
119 if (empty($expected)) {
120 list($type, $plugin) = core_component::normalize_component($component);
121 $plugintypes = core_component::get_plugin_types();
122 if (isset($plugintypes[$type])) {
123 $expected = $plugintypes[$type] . '/' . $plugin;
126 if (strpos($expected, '$CFG->dirroot') !== 0) {
127 $expected = str_replace($CFG->dirroot, '$CFG->dirroot', $expected);
129 if (strpos($current, '$CFG->dirroot') !== 0) {
130 $current = str_replace($CFG->dirroot, '$CFG->dirroot', $current);
133 $a->component = $component;
134 $a->expected = $expected;
135 $a->current = $current;
136 parent::__construct('detectedmisplacedplugin', 'core_plugin', "$CFG->wwwroot/$CFG->admin/index.php", $a);
141 * Sets maximum expected time needed for upgrade task.
142 * Please always make sure that upgrade will not run longer!
144 * The script may be automatically aborted if upgrade times out.
147 * @param int $max_execution_time in seconds (can not be less than 60 s)
149 function upgrade_set_timeout($max_execution_time=300) {
152 if (!isset($CFG->upgraderunning) or $CFG->upgraderunning < time()) {
153 $upgraderunning = get_config(null, 'upgraderunning');
155 $upgraderunning = $CFG->upgraderunning;
158 if (!$upgraderunning) {
160 // never stop CLI upgrades
163 // web upgrade not running or aborted
164 print_error('upgradetimedout', 'admin', "$CFG->wwwroot/$CFG->admin/");
168 if ($max_execution_time < 60) {
169 // protection against 0 here
170 $max_execution_time = 60;
173 $expected_end = time() + $max_execution_time;
175 if ($expected_end < $upgraderunning + 10 and $expected_end > $upgraderunning - 10) {
176 // no need to store new end, it is nearly the same ;-)
181 // there is no point in timing out of CLI scripts, admins can stop them if necessary
182 core_php_time_limit::raise();
184 core_php_time_limit::raise($max_execution_time);
186 set_config('upgraderunning', $expected_end); // keep upgrade locked until this time
190 * Upgrade savepoint, marks end of each upgrade block.
191 * It stores new main version, resets upgrade timeout
192 * and abort upgrade if user cancels page loading.
194 * Please do not make large upgrade blocks with lots of operations,
195 * for example when adding tables keep only one table operation per block.
198 * @param bool $result false if upgrade step failed, true if completed
199 * @param string or float $version main version
200 * @param bool $allowabort allow user to abort script execution here
203 function upgrade_main_savepoint($result, $version, $allowabort=true) {
206 //sanity check to avoid confusion with upgrade_mod_savepoint usage.
207 if (!is_bool($allowabort)) {
208 $errormessage = 'Parameter type mismatch. Are you mixing up upgrade_main_savepoint() and upgrade_mod_savepoint()?';
209 throw new coding_exception($errormessage);
213 throw new upgrade_exception(null, $version);
216 if ($CFG->version >= $version) {
217 // something really wrong is going on in main upgrade script
218 throw new downgrade_exception(null, $CFG->version, $version);
221 set_config('version', $version);
222 upgrade_log(UPGRADE_LOG_NORMAL, null, 'Upgrade savepoint reached');
224 // reset upgrade timeout to default
225 upgrade_set_timeout();
227 // this is a safe place to stop upgrades if user aborts page loading
228 if ($allowabort and connection_aborted()) {
234 * Module upgrade savepoint, marks end of module upgrade blocks
235 * It stores module version, resets upgrade timeout
236 * and abort upgrade if user cancels page loading.
239 * @param bool $result false if upgrade step failed, true if completed
240 * @param string or float $version main version
241 * @param string $modname name of module
242 * @param bool $allowabort allow user to abort script execution here
245 function upgrade_mod_savepoint($result, $version, $modname, $allowabort=true) {
248 $component = 'mod_'.$modname;
251 throw new upgrade_exception($component, $version);
254 $dbversion = $DB->get_field('config_plugins', 'value', array('plugin'=>$component, 'name'=>'version'));
256 if (!$module = $DB->get_record('modules', array('name'=>$modname))) {
257 print_error('modulenotexist', 'debug', '', $modname);
260 if ($dbversion >= $version) {
261 // something really wrong is going on in upgrade script
262 throw new downgrade_exception($component, $dbversion, $version);
264 set_config('version', $version, $component);
266 upgrade_log(UPGRADE_LOG_NORMAL, $component, 'Upgrade savepoint reached');
268 // reset upgrade timeout to default
269 upgrade_set_timeout();
271 // this is a safe place to stop upgrades if user aborts page loading
272 if ($allowabort and connection_aborted()) {
278 * Blocks upgrade savepoint, marks end of blocks upgrade blocks
279 * It stores block version, resets upgrade timeout
280 * and abort upgrade if user cancels page loading.
283 * @param bool $result false if upgrade step failed, true if completed
284 * @param string or float $version main version
285 * @param string $blockname name of block
286 * @param bool $allowabort allow user to abort script execution here
289 function upgrade_block_savepoint($result, $version, $blockname, $allowabort=true) {
292 $component = 'block_'.$blockname;
295 throw new upgrade_exception($component, $version);
298 $dbversion = $DB->get_field('config_plugins', 'value', array('plugin'=>$component, 'name'=>'version'));
300 if (!$block = $DB->get_record('block', array('name'=>$blockname))) {
301 print_error('blocknotexist', 'debug', '', $blockname);
304 if ($dbversion >= $version) {
305 // something really wrong is going on in upgrade script
306 throw new downgrade_exception($component, $dbversion, $version);
308 set_config('version', $version, $component);
310 upgrade_log(UPGRADE_LOG_NORMAL, $component, 'Upgrade savepoint reached');
312 // reset upgrade timeout to default
313 upgrade_set_timeout();
315 // this is a safe place to stop upgrades if user aborts page loading
316 if ($allowabort and connection_aborted()) {
322 * Plugins upgrade savepoint, marks end of blocks upgrade blocks
323 * It stores plugin version, resets upgrade timeout
324 * and abort upgrade if user cancels page loading.
327 * @param bool $result false if upgrade step failed, true if completed
328 * @param string or float $version main version
329 * @param string $type name of plugin
330 * @param string $dir location of plugin
331 * @param bool $allowabort allow user to abort script execution here
334 function upgrade_plugin_savepoint($result, $version, $type, $plugin, $allowabort=true) {
337 $component = $type.'_'.$plugin;
340 throw new upgrade_exception($component, $version);
343 $dbversion = $DB->get_field('config_plugins', 'value', array('plugin'=>$component, 'name'=>'version'));
345 if ($dbversion >= $version) {
346 // Something really wrong is going on in the upgrade script
347 throw new downgrade_exception($component, $dbversion, $version);
349 set_config('version', $version, $component);
350 upgrade_log(UPGRADE_LOG_NORMAL, $component, 'Upgrade savepoint reached');
352 // Reset upgrade timeout to default
353 upgrade_set_timeout();
355 // This is a safe place to stop upgrades if user aborts page loading
356 if ($allowabort and connection_aborted()) {
362 * Detect if there are leftovers in PHP source files.
364 * During main version upgrades administrators MUST move away
365 * old PHP source files and start from scratch (or better
368 * @return bool true means borked upgrade, false means previous PHP files were properly removed
370 function upgrade_stale_php_files_present() {
373 $someexamplesofremovedfiles = array(
375 '/lib/classes/log/sql_internal_reader.php',
377 '/mod/forum/pix/icon.gif',
378 '/tag/templates/tagname.mustache',
380 '/mod/lti/grade.php',
381 '/tag/coursetagslib.php',
385 '/course/delete_category_form.php',
387 '/admin/tool/qeupgradehelper/version.php',
390 '/admin/oacleanup.php',
393 '/backup/bb/README.txt',
394 '/lib/excel/test.php',
396 '/admin/tool/unittest/simpletestlib.php',
398 '/lib/minify/builder/',
400 '/lib/yui/3.4.1pr1/',
402 '/search/cron_php5.php',
403 '/course/report/log/indexlive.php',
404 '/admin/report/backups/index.php',
405 '/admin/generator.php',
409 '/blocks/admin/block_admin.php',
410 '/blocks/admin_tree/block_admin_tree.php',
413 foreach ($someexamplesofremovedfiles as $file) {
414 if (file_exists($CFG->dirroot.$file)) {
424 * @param string $type The type of plugins that should be updated (e.g. 'enrol', 'qtype')
427 function upgrade_plugins($type, $startcallback, $endcallback, $verbose) {
431 if ($type === 'mod') {
432 return upgrade_plugins_modules($startcallback, $endcallback, $verbose);
433 } else if ($type === 'block') {
434 return upgrade_plugins_blocks($startcallback, $endcallback, $verbose);
437 $plugs = core_component::get_plugin_list($type);
439 foreach ($plugs as $plug=>$fullplug) {
440 // Reset time so that it works when installing a large number of plugins
441 core_php_time_limit::raise(600);
442 $component = clean_param($type.'_'.$plug, PARAM_COMPONENT); // standardised plugin name
444 // check plugin dir is valid name
445 if (empty($component)) {
446 throw new plugin_defective_exception($type.'_'.$plug, 'Invalid plugin directory name.');
449 if (!is_readable($fullplug.'/version.php')) {
453 $plugin = new stdClass();
454 $plugin->version = null;
455 $module = $plugin; // Prevent some notices when plugin placed in wrong directory.
456 require($fullplug.'/version.php'); // defines $plugin with version etc
459 if (empty($plugin->version)) {
460 throw new plugin_defective_exception($component, 'Missing $plugin->version number in version.php.');
463 if (empty($plugin->component)) {
464 throw new plugin_defective_exception($component, 'Missing $plugin->component declaration in version.php.');
467 if ($plugin->component !== $component) {
468 throw new plugin_misplaced_exception($plugin->component, null, $fullplug);
471 $plugin->name = $plug;
472 $plugin->fullname = $component;
474 if (!empty($plugin->requires)) {
475 if ($plugin->requires > $CFG->version) {
476 throw new upgrade_requires_exception($component, $plugin->version, $CFG->version, $plugin->requires);
477 } else if ($plugin->requires < 2010000000) {
478 throw new plugin_defective_exception($component, 'Plugin is not compatible with Moodle 2.x or later.');
482 // try to recover from interrupted install.php if needed
483 if (file_exists($fullplug.'/db/install.php')) {
484 if (get_config($plugin->fullname, 'installrunning')) {
485 require_once($fullplug.'/db/install.php');
486 $recover_install_function = 'xmldb_'.$plugin->fullname.'_install_recovery';
487 if (function_exists($recover_install_function)) {
488 $startcallback($component, true, $verbose);
489 $recover_install_function();
490 unset_config('installrunning', $plugin->fullname);
491 update_capabilities($component);
492 log_update_descriptions($component);
493 external_update_descriptions($component);
494 events_update_definition($component);
495 \core\task\manager::reset_scheduled_tasks_for_component($component);
496 message_update_providers($component);
497 \core\message\inbound\manager::update_handlers_for_component($component);
498 if ($type === 'message') {
499 message_update_processors($plug);
501 upgrade_plugin_mnet_functions($component);
502 core_tag_area::reset_definitions_for_component($component);
503 $endcallback($component, true, $verbose);
508 $installedversion = $DB->get_field('config_plugins', 'value', array('name'=>'version', 'plugin'=>$component)); // No caching!
509 if (empty($installedversion)) { // new installation
510 $startcallback($component, true, $verbose);
512 /// Install tables if defined
513 if (file_exists($fullplug.'/db/install.xml')) {
514 $DB->get_manager()->install_from_xmldb_file($fullplug.'/db/install.xml');
518 upgrade_plugin_savepoint(true, $plugin->version, $type, $plug, false);
520 /// execute post install file
521 if (file_exists($fullplug.'/db/install.php')) {
522 require_once($fullplug.'/db/install.php');
523 set_config('installrunning', 1, $plugin->fullname);
524 $post_install_function = 'xmldb_'.$plugin->fullname.'_install';
525 $post_install_function();
526 unset_config('installrunning', $plugin->fullname);
529 /// Install various components
530 update_capabilities($component);
531 log_update_descriptions($component);
532 external_update_descriptions($component);
533 events_update_definition($component);
534 \core\task\manager::reset_scheduled_tasks_for_component($component);
535 message_update_providers($component);
536 \core\message\inbound\manager::update_handlers_for_component($component);
537 if ($type === 'message') {
538 message_update_processors($plug);
540 upgrade_plugin_mnet_functions($component);
541 core_tag_area::reset_definitions_for_component($component);
542 $endcallback($component, true, $verbose);
544 } else if ($installedversion < $plugin->version) { // upgrade
545 /// Run the upgrade function for the plugin.
546 $startcallback($component, false, $verbose);
548 if (is_readable($fullplug.'/db/upgrade.php')) {
549 require_once($fullplug.'/db/upgrade.php'); // defines upgrading function
551 $newupgrade_function = 'xmldb_'.$plugin->fullname.'_upgrade';
552 $result = $newupgrade_function($installedversion);
557 $installedversion = $DB->get_field('config_plugins', 'value', array('name'=>'version', 'plugin'=>$component)); // No caching!
558 if ($installedversion < $plugin->version) {
559 // store version if not already there
560 upgrade_plugin_savepoint($result, $plugin->version, $type, $plug, false);
563 /// Upgrade various components
564 update_capabilities($component);
565 log_update_descriptions($component);
566 external_update_descriptions($component);
567 events_update_definition($component);
568 \core\task\manager::reset_scheduled_tasks_for_component($component);
569 message_update_providers($component);
570 \core\message\inbound\manager::update_handlers_for_component($component);
571 if ($type === 'message') {
573 message_update_processors($plug);
575 upgrade_plugin_mnet_functions($component);
576 core_tag_area::reset_definitions_for_component($component);
577 $endcallback($component, false, $verbose);
579 } else if ($installedversion > $plugin->version) {
580 throw new downgrade_exception($component, $installedversion, $plugin->version);
586 * Find and check all modules and load them up or upgrade them if necessary
591 function upgrade_plugins_modules($startcallback, $endcallback, $verbose) {
594 $mods = core_component::get_plugin_list('mod');
596 foreach ($mods as $mod=>$fullmod) {
598 if ($mod === 'NEWMODULE') { // Someone has unzipped the template, ignore it
602 $component = clean_param('mod_'.$mod, PARAM_COMPONENT);
604 // check module dir is valid name
605 if (empty($component)) {
606 throw new plugin_defective_exception('mod_'.$mod, 'Invalid plugin directory name.');
609 if (!is_readable($fullmod.'/version.php')) {
610 throw new plugin_defective_exception($component, 'Missing version.php');
613 $module = new stdClass();
614 $plugin = new stdClass();
615 $plugin->version = null;
616 require($fullmod .'/version.php'); // Defines $plugin with version etc.
618 // Check if the legacy $module syntax is still used.
619 if (!is_object($module) or (count((array)$module) > 0)) {
620 throw new plugin_defective_exception($component, 'Unsupported $module syntax detected in version.php');
623 // Prepare the record for the {modules} table.
624 $module = clone($plugin);
625 unset($module->version);
626 unset($module->component);
627 unset($module->dependencies);
628 unset($module->release);
630 if (empty($plugin->version)) {
631 throw new plugin_defective_exception($component, 'Missing $plugin->version number in version.php.');
634 if (empty($plugin->component)) {
635 throw new plugin_defective_exception($component, 'Missing $plugin->component declaration in version.php.');
638 if ($plugin->component !== $component) {
639 throw new plugin_misplaced_exception($plugin->component, null, $fullmod);
642 if (!empty($plugin->requires)) {
643 if ($plugin->requires > $CFG->version) {
644 throw new upgrade_requires_exception($component, $plugin->version, $CFG->version, $plugin->requires);
645 } else if ($plugin->requires < 2010000000) {
646 throw new plugin_defective_exception($component, 'Plugin is not compatible with Moodle 2.x or later.');
650 if (empty($module->cron)) {
654 // all modules must have en lang pack
655 if (!is_readable("$fullmod/lang/en/$mod.php")) {
656 throw new plugin_defective_exception($component, 'Missing mandatory en language pack.');
659 $module->name = $mod; // The name MUST match the directory
661 $installedversion = $DB->get_field('config_plugins', 'value', array('name'=>'version', 'plugin'=>$component)); // No caching!
663 if (file_exists($fullmod.'/db/install.php')) {
664 if (get_config($module->name, 'installrunning')) {
665 require_once($fullmod.'/db/install.php');
666 $recover_install_function = 'xmldb_'.$module->name.'_install_recovery';
667 if (function_exists($recover_install_function)) {
668 $startcallback($component, true, $verbose);
669 $recover_install_function();
670 unset_config('installrunning', $module->name);
671 // Install various components too
672 update_capabilities($component);
673 log_update_descriptions($component);
674 external_update_descriptions($component);
675 events_update_definition($component);
676 \core\task\manager::reset_scheduled_tasks_for_component($component);
677 message_update_providers($component);
678 \core\message\inbound\manager::update_handlers_for_component($component);
679 upgrade_plugin_mnet_functions($component);
680 core_tag_area::reset_definitions_for_component($component);
681 $endcallback($component, true, $verbose);
686 if (empty($installedversion)) {
687 $startcallback($component, true, $verbose);
689 /// Execute install.xml (XMLDB) - must be present in all modules
690 $DB->get_manager()->install_from_xmldb_file($fullmod.'/db/install.xml');
692 /// Add record into modules table - may be needed in install.php already
693 $module->id = $DB->insert_record('modules', $module);
694 upgrade_mod_savepoint(true, $plugin->version, $module->name, false);
696 /// Post installation hook - optional
697 if (file_exists("$fullmod/db/install.php")) {
698 require_once("$fullmod/db/install.php");
699 // Set installation running flag, we need to recover after exception or error
700 set_config('installrunning', 1, $module->name);
701 $post_install_function = 'xmldb_'.$module->name.'_install';
702 $post_install_function();
703 unset_config('installrunning', $module->name);
706 /// Install various components
707 update_capabilities($component);
708 log_update_descriptions($component);
709 external_update_descriptions($component);
710 events_update_definition($component);
711 \core\task\manager::reset_scheduled_tasks_for_component($component);
712 message_update_providers($component);
713 \core\message\inbound\manager::update_handlers_for_component($component);
714 upgrade_plugin_mnet_functions($component);
715 core_tag_area::reset_definitions_for_component($component);
717 $endcallback($component, true, $verbose);
719 } else if ($installedversion < $plugin->version) {
720 /// If versions say that we need to upgrade but no upgrade files are available, notify and continue
721 $startcallback($component, false, $verbose);
723 if (is_readable($fullmod.'/db/upgrade.php')) {
724 require_once($fullmod.'/db/upgrade.php'); // defines new upgrading function
725 $newupgrade_function = 'xmldb_'.$module->name.'_upgrade';
726 $result = $newupgrade_function($installedversion, $module);
731 $installedversion = $DB->get_field('config_plugins', 'value', array('name'=>'version', 'plugin'=>$component)); // No caching!
732 $currmodule = $DB->get_record('modules', array('name'=>$module->name));
733 if ($installedversion < $plugin->version) {
734 // store version if not already there
735 upgrade_mod_savepoint($result, $plugin->version, $mod, false);
738 // update cron flag if needed
739 if ($currmodule->cron != $module->cron) {
740 $DB->set_field('modules', 'cron', $module->cron, array('name' => $module->name));
743 // Upgrade various components
744 update_capabilities($component);
745 log_update_descriptions($component);
746 external_update_descriptions($component);
747 events_update_definition($component);
748 \core\task\manager::reset_scheduled_tasks_for_component($component);
749 message_update_providers($component);
750 \core\message\inbound\manager::update_handlers_for_component($component);
751 upgrade_plugin_mnet_functions($component);
752 core_tag_area::reset_definitions_for_component($component);
754 $endcallback($component, false, $verbose);
756 } else if ($installedversion > $plugin->version) {
757 throw new downgrade_exception($component, $installedversion, $plugin->version);
764 * This function finds all available blocks and install them
765 * into blocks table or do all the upgrade process if newer.
770 function upgrade_plugins_blocks($startcallback, $endcallback, $verbose) {
773 require_once($CFG->dirroot.'/blocks/moodleblock.class.php');
775 $blocktitles = array(); // we do not want duplicate titles
777 //Is this a first install
778 $first_install = null;
780 $blocks = core_component::get_plugin_list('block');
782 foreach ($blocks as $blockname=>$fullblock) {
784 if (is_null($first_install)) {
785 $first_install = ($DB->count_records('block_instances') == 0);
788 if ($blockname === 'NEWBLOCK') { // Someone has unzipped the template, ignore it
792 $component = clean_param('block_'.$blockname, PARAM_COMPONENT);
794 // check block dir is valid name
795 if (empty($component)) {
796 throw new plugin_defective_exception('block_'.$blockname, 'Invalid plugin directory name.');
799 if (!is_readable($fullblock.'/version.php')) {
800 throw new plugin_defective_exception('block/'.$blockname, 'Missing version.php file.');
802 $plugin = new stdClass();
803 $plugin->version = null;
805 $module = $plugin; // Prevent some notices when module placed in wrong directory.
806 include($fullblock.'/version.php');
808 $block = clone($plugin);
809 unset($block->version);
810 unset($block->component);
811 unset($block->dependencies);
812 unset($block->release);
814 if (empty($plugin->version)) {
815 throw new plugin_defective_exception($component, 'Missing block version number in version.php.');
818 if (empty($plugin->component)) {
819 throw new plugin_defective_exception($component, 'Missing $plugin->component declaration in version.php.');
822 if ($plugin->component !== $component) {
823 throw new plugin_misplaced_exception($plugin->component, null, $fullblock);
826 if (!empty($plugin->requires)) {
827 if ($plugin->requires > $CFG->version) {
828 throw new upgrade_requires_exception($component, $plugin->version, $CFG->version, $plugin->requires);
829 } else if ($plugin->requires < 2010000000) {
830 throw new plugin_defective_exception($component, 'Plugin is not compatible with Moodle 2.x or later.');
834 if (!is_readable($fullblock.'/block_'.$blockname.'.php')) {
835 throw new plugin_defective_exception('block/'.$blockname, 'Missing main block class file.');
837 include_once($fullblock.'/block_'.$blockname.'.php');
839 $classname = 'block_'.$blockname;
841 if (!class_exists($classname)) {
842 throw new plugin_defective_exception($component, 'Can not load main class.');
845 $blockobj = new $classname; // This is what we'll be testing
846 $blocktitle = $blockobj->get_title();
848 // OK, it's as we all hoped. For further tests, the object will do them itself.
849 if (!$blockobj->_self_test()) {
850 throw new plugin_defective_exception($component, 'Self test failed.');
853 $block->name = $blockname; // The name MUST match the directory
855 $installedversion = $DB->get_field('config_plugins', 'value', array('name'=>'version', 'plugin'=>$component)); // No caching!
857 if (file_exists($fullblock.'/db/install.php')) {
858 if (get_config('block_'.$blockname, 'installrunning')) {
859 require_once($fullblock.'/db/install.php');
860 $recover_install_function = 'xmldb_block_'.$blockname.'_install_recovery';
861 if (function_exists($recover_install_function)) {
862 $startcallback($component, true, $verbose);
863 $recover_install_function();
864 unset_config('installrunning', 'block_'.$blockname);
865 // Install various components
866 update_capabilities($component);
867 log_update_descriptions($component);
868 external_update_descriptions($component);
869 events_update_definition($component);
870 \core\task\manager::reset_scheduled_tasks_for_component($component);
871 message_update_providers($component);
872 \core\message\inbound\manager::update_handlers_for_component($component);
873 upgrade_plugin_mnet_functions($component);
874 core_tag_area::reset_definitions_for_component($component);
875 $endcallback($component, true, $verbose);
880 if (empty($installedversion)) { // block not installed yet, so install it
881 $conflictblock = array_search($blocktitle, $blocktitles);
882 if ($conflictblock !== false) {
883 // Duplicate block titles are not allowed, they confuse people
884 // AND PHP's associative arrays ;)
885 throw new plugin_defective_exception($component, get_string('blocknameconflict', 'error', (object)array('name'=>$block->name, 'conflict'=>$conflictblock)));
887 $startcallback($component, true, $verbose);
889 if (file_exists($fullblock.'/db/install.xml')) {
890 $DB->get_manager()->install_from_xmldb_file($fullblock.'/db/install.xml');
892 $block->id = $DB->insert_record('block', $block);
893 upgrade_block_savepoint(true, $plugin->version, $block->name, false);
895 if (file_exists($fullblock.'/db/install.php')) {
896 require_once($fullblock.'/db/install.php');
897 // Set installation running flag, we need to recover after exception or error
898 set_config('installrunning', 1, 'block_'.$blockname);
899 $post_install_function = 'xmldb_block_'.$blockname.'_install';
900 $post_install_function();
901 unset_config('installrunning', 'block_'.$blockname);
904 $blocktitles[$block->name] = $blocktitle;
906 // Install various components
907 update_capabilities($component);
908 log_update_descriptions($component);
909 external_update_descriptions($component);
910 events_update_definition($component);
911 \core\task\manager::reset_scheduled_tasks_for_component($component);
912 message_update_providers($component);
913 \core\message\inbound\manager::update_handlers_for_component($component);
914 core_tag_area::reset_definitions_for_component($component);
915 upgrade_plugin_mnet_functions($component);
917 $endcallback($component, true, $verbose);
919 } else if ($installedversion < $plugin->version) {
920 $startcallback($component, false, $verbose);
922 if (is_readable($fullblock.'/db/upgrade.php')) {
923 require_once($fullblock.'/db/upgrade.php'); // defines new upgrading function
924 $newupgrade_function = 'xmldb_block_'.$blockname.'_upgrade';
925 $result = $newupgrade_function($installedversion, $block);
930 $installedversion = $DB->get_field('config_plugins', 'value', array('name'=>'version', 'plugin'=>$component)); // No caching!
931 $currblock = $DB->get_record('block', array('name'=>$block->name));
932 if ($installedversion < $plugin->version) {
933 // store version if not already there
934 upgrade_block_savepoint($result, $plugin->version, $block->name, false);
937 if ($currblock->cron != $block->cron) {
938 // update cron flag if needed
939 $DB->set_field('block', 'cron', $block->cron, array('id' => $currblock->id));
942 // Upgrade various components
943 update_capabilities($component);
944 log_update_descriptions($component);
945 external_update_descriptions($component);
946 events_update_definition($component);
947 \core\task\manager::reset_scheduled_tasks_for_component($component);
948 message_update_providers($component);
949 \core\message\inbound\manager::update_handlers_for_component($component);
950 upgrade_plugin_mnet_functions($component);
951 core_tag_area::reset_definitions_for_component($component);
953 $endcallback($component, false, $verbose);
955 } else if ($installedversion > $plugin->version) {
956 throw new downgrade_exception($component, $installedversion, $plugin->version);
961 // Finally, if we are in the first_install of BLOCKS setup frontpage and admin page blocks
962 if ($first_install) {
963 //Iterate over each course - there should be only site course here now
964 if ($courses = $DB->get_records('course')) {
965 foreach ($courses as $course) {
966 blocks_add_default_course_blocks($course);
970 blocks_add_default_system_blocks();
976 * Log_display description function used during install and upgrade.
978 * @param string $component name of component (moodle, mod_assignment, etc.)
981 function log_update_descriptions($component) {
984 $defpath = core_component::get_component_directory($component).'/db/log.php';
986 if (!file_exists($defpath)) {
987 $DB->delete_records('log_display', array('component'=>$component));
995 foreach ($logs as $log) {
996 $newlogs[$log['module'].'-'.$log['action']] = $log; // kind of unique name
1001 $fields = array('module', 'action', 'mtable', 'field');
1002 // update all log fist
1003 $dblogs = $DB->get_records('log_display', array('component'=>$component));
1004 foreach ($dblogs as $dblog) {
1005 $name = $dblog->module.'-'.$dblog->action;
1007 if (empty($logs[$name])) {
1008 $DB->delete_records('log_display', array('id'=>$dblog->id));
1012 $log = $logs[$name];
1013 unset($logs[$name]);
1016 foreach ($fields as $field) {
1017 if ($dblog->$field != $log[$field]) {
1018 $dblog->$field = $log[$field];
1023 $DB->update_record('log_display', $dblog);
1026 foreach ($logs as $log) {
1027 $dblog = (object)$log;
1028 $dblog->component = $component;
1029 $DB->insert_record('log_display', $dblog);
1034 * Web service discovery function used during install and upgrade.
1035 * @param string $component name of component (moodle, mod_assignment, etc.)
1038 function external_update_descriptions($component) {
1041 $defpath = core_component::get_component_directory($component).'/db/services.php';
1043 if (!file_exists($defpath)) {
1044 require_once($CFG->dirroot.'/lib/externallib.php');
1045 external_delete_descriptions($component);
1050 $functions = array();
1051 $services = array();
1054 // update all function fist
1055 $dbfunctions = $DB->get_records('external_functions', array('component'=>$component));
1056 foreach ($dbfunctions as $dbfunction) {
1057 if (empty($functions[$dbfunction->name])) {
1058 $DB->delete_records('external_functions', array('id'=>$dbfunction->id));
1059 // do not delete functions from external_services_functions, beacuse
1060 // we want to notify admins when functions used in custom services disappear
1062 //TODO: this looks wrong, we have to delete it eventually (skodak)
1066 $function = $functions[$dbfunction->name];
1067 unset($functions[$dbfunction->name]);
1068 $function['classpath'] = empty($function['classpath']) ? null : $function['classpath'];
1071 if ($dbfunction->classname != $function['classname']) {
1072 $dbfunction->classname = $function['classname'];
1075 if ($dbfunction->methodname != $function['methodname']) {
1076 $dbfunction->methodname = $function['methodname'];
1079 if ($dbfunction->classpath != $function['classpath']) {
1080 $dbfunction->classpath = $function['classpath'];
1083 $functioncapabilities = array_key_exists('capabilities', $function)?$function['capabilities']:'';
1084 if ($dbfunction->capabilities != $functioncapabilities) {
1085 $dbfunction->capabilities = $functioncapabilities;
1089 if (isset($function['services']) and is_array($function['services'])) {
1090 sort($function['services']);
1091 $functionservices = implode(',', $function['services']);
1093 // Force null values in the DB.
1094 $functionservices = null;
1097 if ($dbfunction->services != $functionservices) {
1098 // Now, we need to check if services were removed, in that case we need to remove the function from them.
1099 $servicesremoved = array_diff(explode(",", $dbfunction->services), explode(",", $functionservices));
1100 foreach ($servicesremoved as $removedshortname) {
1101 if ($externalserviceid = $DB->get_field('external_services', 'id', array("shortname" => $removedshortname))) {
1102 $DB->delete_records('external_services_functions', array('functionname' => $dbfunction->name,
1103 'externalserviceid' => $externalserviceid));
1107 $dbfunction->services = $functionservices;
1111 $DB->update_record('external_functions', $dbfunction);
1114 foreach ($functions as $fname => $function) {
1115 $dbfunction = new stdClass();
1116 $dbfunction->name = $fname;
1117 $dbfunction->classname = $function['classname'];
1118 $dbfunction->methodname = $function['methodname'];
1119 $dbfunction->classpath = empty($function['classpath']) ? null : $function['classpath'];
1120 $dbfunction->component = $component;
1121 $dbfunction->capabilities = array_key_exists('capabilities', $function)?$function['capabilities']:'';
1123 if (isset($function['services']) and is_array($function['services'])) {
1124 sort($function['services']);
1125 $dbfunction->services = implode(',', $function['services']);
1127 // Force null values in the DB.
1128 $dbfunction->services = null;
1131 $dbfunction->id = $DB->insert_record('external_functions', $dbfunction);
1135 // now deal with services
1136 $dbservices = $DB->get_records('external_services', array('component'=>$component));
1137 foreach ($dbservices as $dbservice) {
1138 if (empty($services[$dbservice->name])) {
1139 $DB->delete_records('external_tokens', array('externalserviceid'=>$dbservice->id));
1140 $DB->delete_records('external_services_functions', array('externalserviceid'=>$dbservice->id));
1141 $DB->delete_records('external_services_users', array('externalserviceid'=>$dbservice->id));
1142 $DB->delete_records('external_services', array('id'=>$dbservice->id));
1145 $service = $services[$dbservice->name];
1146 unset($services[$dbservice->name]);
1147 $service['enabled'] = empty($service['enabled']) ? 0 : $service['enabled'];
1148 $service['requiredcapability'] = empty($service['requiredcapability']) ? null : $service['requiredcapability'];
1149 $service['restrictedusers'] = !isset($service['restrictedusers']) ? 1 : $service['restrictedusers'];
1150 $service['downloadfiles'] = !isset($service['downloadfiles']) ? 0 : $service['downloadfiles'];
1151 $service['uploadfiles'] = !isset($service['uploadfiles']) ? 0 : $service['uploadfiles'];
1152 $service['shortname'] = !isset($service['shortname']) ? null : $service['shortname'];
1155 if ($dbservice->requiredcapability != $service['requiredcapability']) {
1156 $dbservice->requiredcapability = $service['requiredcapability'];
1159 if ($dbservice->restrictedusers != $service['restrictedusers']) {
1160 $dbservice->restrictedusers = $service['restrictedusers'];
1163 if ($dbservice->downloadfiles != $service['downloadfiles']) {
1164 $dbservice->downloadfiles = $service['downloadfiles'];
1167 if ($dbservice->uploadfiles != $service['uploadfiles']) {
1168 $dbservice->uploadfiles = $service['uploadfiles'];
1171 //if shortname is not a PARAM_ALPHANUMEXT, fail (tested here for service update and creation)
1172 if (isset($service['shortname']) and
1173 (clean_param($service['shortname'], PARAM_ALPHANUMEXT) != $service['shortname'])) {
1174 throw new moodle_exception('installserviceshortnameerror', 'webservice', '', $service['shortname']);
1176 if ($dbservice->shortname != $service['shortname']) {
1177 //check that shortname is unique
1178 if (isset($service['shortname'])) { //we currently accepts multiple shortname == null
1179 $existingservice = $DB->get_record('external_services',
1180 array('shortname' => $service['shortname']));
1181 if (!empty($existingservice)) {
1182 throw new moodle_exception('installexistingserviceshortnameerror', 'webservice', '', $service['shortname']);
1185 $dbservice->shortname = $service['shortname'];
1189 $DB->update_record('external_services', $dbservice);
1192 $functions = $DB->get_records('external_services_functions', array('externalserviceid'=>$dbservice->id));
1193 foreach ($functions as $function) {
1194 $key = array_search($function->functionname, $service['functions']);
1195 if ($key === false) {
1196 $DB->delete_records('external_services_functions', array('id'=>$function->id));
1198 unset($service['functions'][$key]);
1201 foreach ($service['functions'] as $fname) {
1202 $newf = new stdClass();
1203 $newf->externalserviceid = $dbservice->id;
1204 $newf->functionname = $fname;
1205 $DB->insert_record('external_services_functions', $newf);
1209 foreach ($services as $name => $service) {
1210 //check that shortname is unique
1211 if (isset($service['shortname'])) { //we currently accepts multiple shortname == null
1212 $existingservice = $DB->get_record('external_services',
1213 array('shortname' => $service['shortname']));
1214 if (!empty($existingservice)) {
1215 throw new moodle_exception('installserviceshortnameerror', 'webservice');
1219 $dbservice = new stdClass();
1220 $dbservice->name = $name;
1221 $dbservice->enabled = empty($service['enabled']) ? 0 : $service['enabled'];
1222 $dbservice->requiredcapability = empty($service['requiredcapability']) ? null : $service['requiredcapability'];
1223 $dbservice->restrictedusers = !isset($service['restrictedusers']) ? 1 : $service['restrictedusers'];
1224 $dbservice->downloadfiles = !isset($service['downloadfiles']) ? 0 : $service['downloadfiles'];
1225 $dbservice->uploadfiles = !isset($service['uploadfiles']) ? 0 : $service['uploadfiles'];
1226 $dbservice->shortname = !isset($service['shortname']) ? null : $service['shortname'];
1227 $dbservice->component = $component;
1228 $dbservice->timecreated = time();
1229 $dbservice->id = $DB->insert_record('external_services', $dbservice);
1230 foreach ($service['functions'] as $fname) {
1231 $newf = new stdClass();
1232 $newf->externalserviceid = $dbservice->id;
1233 $newf->functionname = $fname;
1234 $DB->insert_record('external_services_functions', $newf);
1240 * Allow plugins and subsystems to add external functions to other plugins or built-in services.
1241 * This function is executed just after all the plugins have been updated.
1243 function external_update_services() {
1246 // Look for external functions that want to be added in existing services.
1247 $functions = $DB->get_records_select('external_functions', 'services IS NOT NULL');
1249 $servicescache = array();
1250 foreach ($functions as $function) {
1251 // Prevent edge cases.
1252 if (empty($function->services)) {
1255 $services = explode(',', $function->services);
1257 foreach ($services as $serviceshortname) {
1258 // Get the service id by shortname.
1259 if (!empty($servicescache[$serviceshortname])) {
1260 $serviceid = $servicescache[$serviceshortname];
1261 } else if ($service = $DB->get_record('external_services', array('shortname' => $serviceshortname))) {
1262 // If the component is empty, it means that is not a built-in service.
1263 // We don't allow functions to inject themselves in services created by an user in Moodle.
1264 if (empty($service->component)) {
1267 $serviceid = $service->id;
1268 $servicescache[$serviceshortname] = $serviceid;
1270 // Service not found.
1273 // Finally add the function to the service.
1274 $newf = new stdClass();
1275 $newf->externalserviceid = $serviceid;
1276 $newf->functionname = $function->name;
1278 if (!$DB->record_exists('external_services_functions', (array)$newf)) {
1279 $DB->insert_record('external_services_functions', $newf);
1286 * upgrade logging functions
1288 function upgrade_handle_exception($ex, $plugin = null) {
1291 // rollback everything, we need to log all upgrade problems
1292 abort_all_db_transactions();
1294 $info = get_exception_info($ex);
1296 // First log upgrade error
1297 upgrade_log(UPGRADE_LOG_ERROR, $plugin, 'Exception: ' . get_class($ex), $info->message, $info->backtrace);
1299 // Always turn on debugging - admins need to know what is going on
1300 set_debugging(DEBUG_DEVELOPER, true);
1302 default_exception_handler($ex, true, $plugin);
1306 * Adds log entry into upgrade_log table
1308 * @param int $type UPGRADE_LOG_NORMAL, UPGRADE_LOG_NOTICE or UPGRADE_LOG_ERROR
1309 * @param string $plugin frankenstyle component name
1310 * @param string $info short description text of log entry
1311 * @param string $details long problem description
1312 * @param string $backtrace string used for errors only
1315 function upgrade_log($type, $plugin, $info, $details=null, $backtrace=null) {
1316 global $DB, $USER, $CFG;
1318 if (empty($plugin)) {
1322 list($plugintype, $pluginname) = core_component::normalize_component($plugin);
1323 $component = is_null($pluginname) ? $plugintype : $plugintype . '_' . $pluginname;
1325 $backtrace = format_backtrace($backtrace, true);
1327 $currentversion = null;
1328 $targetversion = null;
1330 //first try to find out current version number
1331 if ($plugintype === 'core') {
1333 $currentversion = $CFG->version;
1336 include("$CFG->dirroot/version.php");
1337 $targetversion = $version;
1340 $pluginversion = get_config($component, 'version');
1341 if (!empty($pluginversion)) {
1342 $currentversion = $pluginversion;
1344 $cd = core_component::get_component_directory($component);
1345 if (file_exists("$cd/version.php")) {
1346 $plugin = new stdClass();
1347 $plugin->version = null;
1349 include("$cd/version.php");
1350 $targetversion = $plugin->version;
1354 $log = new stdClass();
1356 $log->plugin = $component;
1357 $log->version = $currentversion;
1358 $log->targetversion = $targetversion;
1360 $log->details = $details;
1361 $log->backtrace = $backtrace;
1362 $log->userid = $USER->id;
1363 $log->timemodified = time();
1365 $DB->insert_record('upgrade_log', $log);
1366 } catch (Exception $ignored) {
1367 // possible during install or 2.0 upgrade
1372 * Marks start of upgrade, blocks any other access to site.
1373 * The upgrade is finished at the end of script or after timeout.
1379 function upgrade_started($preinstall=false) {
1380 global $CFG, $DB, $PAGE, $OUTPUT;
1382 static $started = false;
1385 ignore_user_abort(true);
1386 upgrade_setup_debug(true);
1388 } else if ($started) {
1389 upgrade_set_timeout(120);
1392 if (!CLI_SCRIPT and !$PAGE->headerprinted) {
1393 $strupgrade = get_string('upgradingversion', 'admin');
1394 $PAGE->set_pagelayout('maintenance');
1395 upgrade_init_javascript();
1396 $PAGE->set_title($strupgrade.' - Moodle '.$CFG->target_release);
1397 $PAGE->set_heading($strupgrade);
1398 $PAGE->navbar->add($strupgrade);
1399 $PAGE->set_cacheable(false);
1400 echo $OUTPUT->header();
1403 ignore_user_abort(true);
1404 core_shutdown_manager::register_function('upgrade_finished_handler');
1405 upgrade_setup_debug(true);
1406 set_config('upgraderunning', time()+300);
1412 * Internal function - executed if upgrade interrupted.
1414 function upgrade_finished_handler() {
1419 * Indicates upgrade is finished.
1421 * This function may be called repeatedly.
1426 function upgrade_finished($continueurl=null) {
1427 global $CFG, $DB, $OUTPUT;
1429 if (!empty($CFG->upgraderunning)) {
1430 unset_config('upgraderunning');
1431 // We have to forcefully purge the caches using the writer here.
1432 // This has to be done after we unset the config var. If someone hits the site while this is set they will
1433 // cause the config values to propogate to the caches.
1434 // Caches are purged after the last step in an upgrade but there is several code routines that exceute between
1435 // then and now that leaving a window for things to fall out of sync.
1436 cache_helper::purge_all(true);
1437 upgrade_setup_debug(false);
1438 ignore_user_abort(false);
1440 echo $OUTPUT->continue_button($continueurl);
1441 echo $OUTPUT->footer();
1451 function upgrade_setup_debug($starting) {
1454 static $originaldebug = null;
1457 if ($originaldebug === null) {
1458 $originaldebug = $DB->get_debug();
1460 if (!empty($CFG->upgradeshowsql)) {
1461 $DB->set_debug(true);
1464 $DB->set_debug($originaldebug);
1468 function print_upgrade_separator() {
1475 * Default start upgrade callback
1476 * @param string $plugin
1477 * @param bool $installation true if installation, false means upgrade
1479 function print_upgrade_part_start($plugin, $installation, $verbose) {
1481 if (empty($plugin) or $plugin == 'moodle') {
1482 upgrade_started($installation); // does not store upgrade running flag yet
1484 echo $OUTPUT->heading(get_string('coresystem'));
1489 echo $OUTPUT->heading($plugin);
1492 if ($installation) {
1493 if (empty($plugin) or $plugin == 'moodle') {
1494 // no need to log - log table not yet there ;-)
1496 upgrade_log(UPGRADE_LOG_NORMAL, $plugin, 'Starting plugin installation');
1499 if (empty($plugin) or $plugin == 'moodle') {
1500 upgrade_log(UPGRADE_LOG_NORMAL, $plugin, 'Starting core upgrade');
1502 upgrade_log(UPGRADE_LOG_NORMAL, $plugin, 'Starting plugin upgrade');
1508 * Default end upgrade callback
1509 * @param string $plugin
1510 * @param bool $installation true if installation, false means upgrade
1512 function print_upgrade_part_end($plugin, $installation, $verbose) {
1515 if ($installation) {
1516 if (empty($plugin) or $plugin == 'moodle') {
1517 upgrade_log(UPGRADE_LOG_NORMAL, $plugin, 'Core installed');
1519 upgrade_log(UPGRADE_LOG_NORMAL, $plugin, 'Plugin installed');
1522 if (empty($plugin) or $plugin == 'moodle') {
1523 upgrade_log(UPGRADE_LOG_NORMAL, $plugin, 'Core upgraded');
1525 upgrade_log(UPGRADE_LOG_NORMAL, $plugin, 'Plugin upgraded');
1529 echo $OUTPUT->notification(get_string('success'), 'notifysuccess');
1530 print_upgrade_separator();
1535 * Sets up JS code required for all upgrade scripts.
1538 function upgrade_init_javascript() {
1540 // scroll to the end of each upgrade page so that ppl see either error or continue button,
1541 // no need to scroll continuously any more, it is enough to jump to end once the footer is printed ;-)
1542 $js = "window.scrollTo(0, 5000000);";
1543 $PAGE->requires->js_init_code($js);
1547 * Try to upgrade the given language pack (or current language)
1549 * @param string $lang the code of the language to update, defaults to the current language
1551 function upgrade_language_pack($lang = null) {
1554 if (!empty($CFG->skiplangupgrade)) {
1558 if (!file_exists("$CFG->dirroot/$CFG->admin/tool/langimport/lib.php")) {
1559 // weird, somebody uninstalled the import utility
1564 $lang = current_language();
1567 if (!get_string_manager()->translation_exists($lang)) {
1571 get_string_manager()->reset_caches();
1573 if ($lang === 'en') {
1574 return; // Nothing to do
1577 upgrade_started(false);
1579 require_once("$CFG->dirroot/$CFG->admin/tool/langimport/lib.php");
1580 tool_langimport_preupgrade_update($lang);
1582 get_string_manager()->reset_caches();
1584 print_upgrade_separator();
1588 * Install core moodle tables and initialize
1589 * @param float $version target version
1590 * @param bool $verbose
1591 * @return void, may throw exception
1593 function install_core($version, $verbose) {
1596 // We can not call purge_all_caches() yet, make sure the temp and cache dirs exist and are empty.
1597 remove_dir($CFG->cachedir.'', true);
1598 make_cache_directory('', true);
1600 remove_dir($CFG->localcachedir.'', true);
1601 make_localcache_directory('', true);
1603 remove_dir($CFG->tempdir.'', true);
1604 make_temp_directory('', true);
1606 remove_dir($CFG->dataroot.'/muc', true);
1607 make_writable_directory($CFG->dataroot.'/muc', true);
1610 core_php_time_limit::raise(600);
1611 print_upgrade_part_start('moodle', true, $verbose); // does not store upgrade running flag
1613 $DB->get_manager()->install_from_xmldb_file("$CFG->libdir/db/install.xml");
1614 upgrade_started(); // we want the flag to be stored in config table ;-)
1616 // set all core default records and default settings
1617 require_once("$CFG->libdir/db/install.php");
1618 xmldb_main_install(); // installs the capabilities too
1621 upgrade_main_savepoint(true, $version, false);
1623 // Continue with the installation
1624 log_update_descriptions('moodle');
1625 external_update_descriptions('moodle');
1626 events_update_definition('moodle');
1627 \core\task\manager::reset_scheduled_tasks_for_component('moodle');
1628 message_update_providers('moodle');
1629 \core\message\inbound\manager::update_handlers_for_component('moodle');
1630 core_tag_area::reset_definitions_for_component('moodle');
1632 // Write default settings unconditionally
1633 admin_apply_default_settings(NULL, true);
1635 print_upgrade_part_end(null, true, $verbose);
1637 // Purge all caches. They're disabled but this ensures that we don't have any persistent data just in case something
1638 // during installation didn't use APIs.
1639 cache_helper::purge_all();
1640 } catch (exception $ex) {
1641 upgrade_handle_exception($ex);
1642 } catch (Throwable $ex) {
1643 // Engine errors in PHP7 throw exceptions of type Throwable (this "catch" will be ignored in PHP5).
1644 upgrade_handle_exception($ex);
1649 * Upgrade moodle core
1650 * @param float $version target version
1651 * @param bool $verbose
1652 * @return void, may throw exception
1654 function upgrade_core($version, $verbose) {
1655 global $CFG, $SITE, $DB, $COURSE;
1657 raise_memory_limit(MEMORY_EXTRA);
1659 require_once($CFG->libdir.'/db/upgrade.php'); // Defines upgrades
1662 // Reset caches before any output.
1663 cache_helper::purge_all(true);
1666 // Upgrade current language pack if we can
1667 upgrade_language_pack();
1669 print_upgrade_part_start('moodle', false, $verbose);
1671 // Pre-upgrade scripts for local hack workarounds.
1672 $preupgradefile = "$CFG->dirroot/local/preupgrade.php";
1673 if (file_exists($preupgradefile)) {
1674 core_php_time_limit::raise();
1675 require($preupgradefile);
1676 // Reset upgrade timeout to default.
1677 upgrade_set_timeout();
1680 $result = xmldb_main_upgrade($CFG->version);
1681 if ($version > $CFG->version) {
1682 // store version if not already there
1683 upgrade_main_savepoint($result, $version, false);
1686 // In case structure of 'course' table has been changed and we forgot to update $SITE, re-read it from db.
1687 $SITE = $DB->get_record('course', array('id' => $SITE->id));
1688 $COURSE = clone($SITE);
1690 // perform all other component upgrade routines
1691 update_capabilities('moodle');
1692 log_update_descriptions('moodle');
1693 external_update_descriptions('moodle');
1694 events_update_definition('moodle');
1695 \core\task\manager::reset_scheduled_tasks_for_component('moodle');
1696 message_update_providers('moodle');
1697 \core\message\inbound\manager::update_handlers_for_component('moodle');
1698 core_tag_area::reset_definitions_for_component('moodle');
1699 // Update core definitions.
1700 cache_helper::update_definitions(true);
1702 // Purge caches again, just to be sure we arn't holding onto old stuff now.
1703 cache_helper::purge_all(true);
1706 // Clean up contexts - more and more stuff depends on existence of paths and contexts
1707 context_helper::cleanup_instances();
1708 context_helper::create_instances(null, false);
1709 context_helper::build_all_paths(false);
1710 $syscontext = context_system::instance();
1711 $syscontext->mark_dirty();
1713 print_upgrade_part_end('moodle', false, $verbose);
1714 } catch (Exception $ex) {
1715 upgrade_handle_exception($ex);
1716 } catch (Throwable $ex) {
1717 // Engine errors in PHP7 throw exceptions of type Throwable (this "catch" will be ignored in PHP5).
1718 upgrade_handle_exception($ex);
1723 * Upgrade/install other parts of moodle
1724 * @param bool $verbose
1725 * @return void, may throw exception
1727 function upgrade_noncore($verbose) {
1730 raise_memory_limit(MEMORY_EXTRA);
1732 // upgrade all plugins types
1734 // Reset caches before any output.
1735 cache_helper::purge_all(true);
1738 $plugintypes = core_component::get_plugin_types();
1739 foreach ($plugintypes as $type=>$location) {
1740 upgrade_plugins($type, 'print_upgrade_part_start', 'print_upgrade_part_end', $verbose);
1742 // Upgrade services.
1743 // This function gives plugins and subsystems a chance to add functions to existing built-in services.
1744 external_update_services();
1746 // Update cache definitions. Involves scanning each plugin for any changes.
1747 cache_helper::update_definitions();
1748 // Mark the site as upgraded.
1749 set_config('allversionshash', core_component::get_all_versions_hash());
1751 // Purge caches again, just to be sure we arn't holding onto old stuff now.
1752 cache_helper::purge_all(true);
1755 } catch (Exception $ex) {
1756 upgrade_handle_exception($ex);
1757 } catch (Throwable $ex) {
1758 // Engine errors in PHP7 throw exceptions of type Throwable (this "catch" will be ignored in PHP5).
1759 upgrade_handle_exception($ex);
1764 * Checks if the main tables have been installed yet or not.
1766 * Note: we can not use caches here because they might be stale,
1771 function core_tables_exist() {
1774 if (!$tables = $DB->get_tables(false) ) { // No tables yet at all.
1777 } else { // Check for missing main tables
1778 $mtables = array('config', 'course', 'groupings'); // some tables used in 1.9 and 2.0, preferable something from the start and end of install.xml
1779 foreach ($mtables as $mtable) {
1780 if (!in_array($mtable, $tables)) {
1789 * upgrades the mnet rpc definitions for the given component.
1790 * this method doesn't return status, an exception will be thrown in the case of an error
1792 * @param string $component the plugin to upgrade, eg auth_mnet
1794 function upgrade_plugin_mnet_functions($component) {
1797 list($type, $plugin) = core_component::normalize_component($component);
1798 $path = core_component::get_plugin_directory($type, $plugin);
1800 $publishes = array();
1801 $subscribes = array();
1802 if (file_exists($path . '/db/mnet.php')) {
1803 require_once($path . '/db/mnet.php'); // $publishes comes from this file
1805 if (empty($publishes)) {
1806 $publishes = array(); // still need this to be able to disable stuff later
1808 if (empty($subscribes)) {
1809 $subscribes = array(); // still need this to be able to disable stuff later
1812 static $servicecache = array();
1814 // rekey an array based on the rpc method for easy lookups later
1815 $publishmethodservices = array();
1816 $subscribemethodservices = array();
1817 foreach($publishes as $servicename => $service) {
1818 if (is_array($service['methods'])) {
1819 foreach($service['methods'] as $methodname) {
1820 $service['servicename'] = $servicename;
1821 $publishmethodservices[$methodname][] = $service;
1826 // Disable functions that don't exist (any more) in the source
1827 // Should these be deleted? What about their permissions records?
1828 foreach ($DB->get_records('mnet_rpc', array('pluginname'=>$plugin, 'plugintype'=>$type), 'functionname ASC ') as $rpc) {
1829 if (!array_key_exists($rpc->functionname, $publishmethodservices) && $rpc->enabled) {
1830 $DB->set_field('mnet_rpc', 'enabled', 0, array('id' => $rpc->id));
1831 } else if (array_key_exists($rpc->functionname, $publishmethodservices) && !$rpc->enabled) {
1832 $DB->set_field('mnet_rpc', 'enabled', 1, array('id' => $rpc->id));
1836 // reflect all the services we're publishing and save them
1837 static $cachedclasses = array(); // to store reflection information in
1838 foreach ($publishes as $service => $data) {
1839 $f = $data['filename'];
1840 $c = $data['classname'];
1841 foreach ($data['methods'] as $method) {
1842 $dataobject = new stdClass();
1843 $dataobject->plugintype = $type;
1844 $dataobject->pluginname = $plugin;
1845 $dataobject->enabled = 1;
1846 $dataobject->classname = $c;
1847 $dataobject->filename = $f;
1849 if (is_string($method)) {
1850 $dataobject->functionname = $method;
1852 } else if (is_array($method)) { // wants to override file or class
1853 $dataobject->functionname = $method['method'];
1854 $dataobject->classname = $method['classname'];
1855 $dataobject->filename = $method['filename'];
1857 $dataobject->xmlrpcpath = $type.'/'.$plugin.'/'.$dataobject->filename.'/'.$method;
1858 $dataobject->static = false;
1860 require_once($path . '/' . $dataobject->filename);
1861 $functionreflect = null; // slightly different ways to get this depending on whether it's a class method or a function
1862 if (!empty($dataobject->classname)) {
1863 if (!class_exists($dataobject->classname)) {
1864 throw new moodle_exception('installnosuchmethod', 'mnet', '', (object)array('method' => $dataobject->functionname, 'class' => $dataobject->classname));
1866 $key = $dataobject->filename . '|' . $dataobject->classname;
1867 if (!array_key_exists($key, $cachedclasses)) { // look to see if we've already got a reflection object
1869 $cachedclasses[$key] = new ReflectionClass($dataobject->classname);
1870 } catch (ReflectionException $e) { // catch these and rethrow them to something more helpful
1871 throw new moodle_exception('installreflectionclasserror', 'mnet', '', (object)array('method' => $dataobject->functionname, 'class' => $dataobject->classname, 'error' => $e->getMessage()));
1874 $r =& $cachedclasses[$key];
1875 if (!$r->hasMethod($dataobject->functionname)) {
1876 throw new moodle_exception('installnosuchmethod', 'mnet', '', (object)array('method' => $dataobject->functionname, 'class' => $dataobject->classname));
1878 $functionreflect = $r->getMethod($dataobject->functionname);
1879 $dataobject->static = (int)$functionreflect->isStatic();
1881 if (!function_exists($dataobject->functionname)) {
1882 throw new moodle_exception('installnosuchfunction', 'mnet', '', (object)array('method' => $dataobject->functionname, 'file' => $dataobject->filename));
1885 $functionreflect = new ReflectionFunction($dataobject->functionname);
1886 } catch (ReflectionException $e) { // catch these and rethrow them to something more helpful
1887 throw new moodle_exception('installreflectionfunctionerror', 'mnet', '', (object)array('method' => $dataobject->functionname, '' => $dataobject->filename, 'error' => $e->getMessage()));
1890 $dataobject->profile = serialize(admin_mnet_method_profile($functionreflect));
1891 $dataobject->help = admin_mnet_method_get_help($functionreflect);
1893 if ($record_exists = $DB->get_record('mnet_rpc', array('xmlrpcpath'=>$dataobject->xmlrpcpath))) {
1894 $dataobject->id = $record_exists->id;
1895 $dataobject->enabled = $record_exists->enabled;
1896 $DB->update_record('mnet_rpc', $dataobject);
1898 $dataobject->id = $DB->insert_record('mnet_rpc', $dataobject, true);
1901 // TODO this API versioning must be reworked, here the recently processed method
1902 // sets the service API which may not be correct
1903 foreach ($publishmethodservices[$dataobject->functionname] as $service) {
1904 if ($serviceobj = $DB->get_record('mnet_service', array('name'=>$service['servicename']))) {
1905 $serviceobj->apiversion = $service['apiversion'];
1906 $DB->update_record('mnet_service', $serviceobj);
1908 $serviceobj = new stdClass();
1909 $serviceobj->name = $service['servicename'];
1910 $serviceobj->description = empty($service['description']) ? '' : $service['description'];
1911 $serviceobj->apiversion = $service['apiversion'];
1912 $serviceobj->offer = 1;
1913 $serviceobj->id = $DB->insert_record('mnet_service', $serviceobj);
1915 $servicecache[$service['servicename']] = $serviceobj;
1916 if (!$DB->record_exists('mnet_service2rpc', array('rpcid'=>$dataobject->id, 'serviceid'=>$serviceobj->id))) {
1917 $obj = new stdClass();
1918 $obj->rpcid = $dataobject->id;
1919 $obj->serviceid = $serviceobj->id;
1920 $DB->insert_record('mnet_service2rpc', $obj, true);
1925 // finished with methods we publish, now do subscribable methods
1926 foreach($subscribes as $service => $methods) {
1927 if (!array_key_exists($service, $servicecache)) {
1928 if (!$serviceobj = $DB->get_record('mnet_service', array('name' => $service))) {
1929 debugging("TODO: skipping unknown service $service - somebody needs to fix MDL-21993");
1932 $servicecache[$service] = $serviceobj;
1934 $serviceobj = $servicecache[$service];
1936 foreach ($methods as $method => $xmlrpcpath) {
1937 if (!$rpcid = $DB->get_field('mnet_remote_rpc', 'id', array('xmlrpcpath'=>$xmlrpcpath))) {
1938 $remoterpc = (object)array(
1939 'functionname' => $method,
1940 'xmlrpcpath' => $xmlrpcpath,
1941 'plugintype' => $type,
1942 'pluginname' => $plugin,
1945 $rpcid = $remoterpc->id = $DB->insert_record('mnet_remote_rpc', $remoterpc, true);
1947 if (!$DB->record_exists('mnet_remote_service2rpc', array('rpcid'=>$rpcid, 'serviceid'=>$serviceobj->id))) {
1948 $obj = new stdClass();
1949 $obj->rpcid = $rpcid;
1950 $obj->serviceid = $serviceobj->id;
1951 $DB->insert_record('mnet_remote_service2rpc', $obj, true);
1953 $subscribemethodservices[$method][] = $service;
1957 foreach ($DB->get_records('mnet_remote_rpc', array('pluginname'=>$plugin, 'plugintype'=>$type), 'functionname ASC ') as $rpc) {
1958 if (!array_key_exists($rpc->functionname, $subscribemethodservices) && $rpc->enabled) {
1959 $DB->set_field('mnet_remote_rpc', 'enabled', 0, array('id' => $rpc->id));
1960 } else if (array_key_exists($rpc->functionname, $subscribemethodservices) && !$rpc->enabled) {
1961 $DB->set_field('mnet_remote_rpc', 'enabled', 1, array('id' => $rpc->id));
1969 * Given some sort of reflection function/method object, return a profile array, ready to be serialized and stored
1971 * @param ReflectionFunctionAbstract $function reflection function/method object from which to extract information
1973 * @return array associative array with function/method information
1975 function admin_mnet_method_profile(ReflectionFunctionAbstract $function) {
1976 $commentlines = admin_mnet_method_get_docblock($function);
1977 $getkey = function($key) use ($commentlines) {
1978 return array_values(array_filter($commentlines, function($line) use ($key) {
1979 return $line[0] == $key;
1982 $returnline = $getkey('@return');
1984 'parameters' => array_map(function($line) {
1986 'name' => trim($line[2], " \t\n\r\0\x0B$"),
1988 'description' => $line[3]
1990 }, $getkey('@param')),
1993 'type' => !empty($returnline[0][1]) ? $returnline[0][1] : 'void',
1994 'description' => !empty($returnline[0][2]) ? $returnline[0][2] : ''
2000 * Given some sort of reflection function/method object, return an array of docblock lines, where each line is an array of
2001 * keywords/descriptions
2003 * @param ReflectionFunctionAbstract $function reflection function/method object from which to extract information
2005 * @return array docblock converted in to an array
2007 function admin_mnet_method_get_docblock(ReflectionFunctionAbstract $function) {
2008 return array_map(function($line) {
2009 $text = trim($line, " \t\n\r\0\x0B*/");
2010 if (strpos($text, '@param') === 0) {
2011 return preg_split('/\s+/', $text, 4);
2014 if (strpos($text, '@return') === 0) {
2015 return preg_split('/\s+/', $text, 3);
2018 return array($text);
2019 }, explode("\n", $function->getDocComment()));
2023 * Given some sort of reflection function/method object, return just the help text
2025 * @param ReflectionFunctionAbstract $function reflection function/method object from which to extract information
2027 * @return string docblock help text
2029 function admin_mnet_method_get_help(ReflectionFunctionAbstract $function) {
2030 $helplines = array_map(function($line) {
2031 return implode(' ', $line);
2032 }, array_values(array_filter(admin_mnet_method_get_docblock($function), function($line) {
2033 return strpos($line[0], '@') !== 0 && !empty($line[0]);
2036 return implode("\n", $helplines);
2040 * Detect draft file areas with missing root directory records and add them.
2042 function upgrade_fix_missing_root_folders_draft() {
2045 $transaction = $DB->start_delegated_transaction();
2047 $sql = "SELECT contextid, itemid, MAX(timecreated) AS timecreated, MAX(timemodified) AS timemodified
2049 WHERE (component = 'user' AND filearea = 'draft')
2050 GROUP BY contextid, itemid
2051 HAVING MAX(CASE WHEN filename = '.' AND filepath = '/' THEN 1 ELSE 0 END) = 0";
2053 $rs = $DB->get_recordset_sql($sql);
2054 $defaults = array('component' => 'user',
2055 'filearea' => 'draft',
2058 'userid' => 0, // Don't rely on any particular user for these system records.
2060 'contenthash' => sha1(''));
2061 foreach ($rs as $r) {
2062 $r->pathnamehash = sha1("/$r->contextid/user/draft/$r->itemid/.");
2063 $DB->insert_record('files', (array)$r + $defaults);
2066 $transaction->allow_commit();
2070 * This function verifies that the database is not using an unsupported storage engine.
2072 * @param environment_results $result object to update, if relevant
2073 * @return environment_results|null updated results object, or null if the storage engine is supported
2075 function check_database_storage_engine(environment_results $result) {
2078 // Check if MySQL is the DB family (this will also be the same for MariaDB).
2079 if ($DB->get_dbfamily() == 'mysql') {
2080 // Get the database engine we will either be using to install the tables, or what we are currently using.
2081 $engine = $DB->get_dbengine();
2082 // Check if MyISAM is the storage engine that will be used, if so, do not proceed and display an error.
2083 if ($engine == 'MyISAM') {
2084 $result->setInfo('unsupported_db_storage_engine');
2085 $result->setStatus(false);
2094 * Method used to check the usage of slasharguments config and display a warning message.
2096 * @param environment_results $result object to update, if relevant.
2097 * @return environment_results|null updated results or null if slasharguments is disabled.
2099 function check_slasharguments(environment_results $result){
2102 if (!during_initial_install() && empty($CFG->slasharguments)) {
2103 $result->setInfo('slasharguments');
2104 $result->setStatus(false);
2112 * This function verifies if the database has tables using innoDB Antelope row format.
2114 * @param environment_results $result
2115 * @return environment_results|null updated results object, or null if no Antelope table has been found.
2117 function check_database_tables_row_format(environment_results $result) {
2120 if ($DB->get_dbfamily() == 'mysql') {
2121 $generator = $DB->get_manager()->generator;
2123 foreach ($DB->get_tables(false) as $table) {
2124 $columns = $DB->get_columns($table, false);
2125 $size = $generator->guess_antelope_row_size($columns);
2126 $format = $DB->get_row_format($table);
2128 if ($size <= $generator::ANTELOPE_MAX_ROW_SIZE) {
2132 if ($format === 'Compact' or $format === 'Redundant') {
2133 $result->setInfo('unsupported_db_table_row_format');
2134 $result->setStatus(false);
2144 * Upgrade the minmaxgrade setting.
2146 * This step should only be run for sites running 2.8 or later. Sites using 2.7 will be fine
2147 * using the new default system setting $CFG->grade_minmaxtouse.
2151 function upgrade_minmaxgrade() {
2154 // 2 is a copy of GRADE_MIN_MAX_FROM_GRADE_GRADE.
2157 // Set the course setting when:
2158 // - The system setting does not exist yet.
2159 // - The system seeting is not set to what we'd set the course setting.
2160 $setcoursesetting = !isset($CFG->grade_minmaxtouse) || $CFG->grade_minmaxtouse != $settingvalue;
2162 // Identify the courses that have inconsistencies grade_item vs grade_grade.
2163 $sql = "SELECT DISTINCT(gi.courseid)
2164 FROM {grade_grades} gg
2165 JOIN {grade_items} gi
2166 ON gg.itemid = gi.id
2167 WHERE gi.itemtype NOT IN (?, ?)
2168 AND (gg.rawgrademax != gi.grademax OR gg.rawgrademin != gi.grademin)";
2170 $rs = $DB->get_recordset_sql($sql, array('course', 'category'));
2171 foreach ($rs as $record) {
2172 // Flag the course to show a notice in the gradebook.
2173 set_config('show_min_max_grades_changed_' . $record->courseid, 1);
2175 // Set the appropriate course setting so that grades displayed are not changed.
2176 $configname = 'minmaxtouse';
2177 if ($setcoursesetting &&
2178 !$DB->record_exists('grade_settings', array('courseid' => $record->courseid, 'name' => $configname))) {
2179 // Do not set the setting when the course already defines it.
2180 $data = new stdClass();
2181 $data->courseid = $record->courseid;
2182 $data->name = $configname;
2183 $data->value = $settingvalue;
2184 $DB->insert_record('grade_settings', $data);
2187 // Mark the grades to be regraded.
2188 $DB->set_field('grade_items', 'needsupdate', 1, array('courseid' => $record->courseid));
2195 * Assert the upgrade key is provided, if it is defined.
2197 * The upgrade key can be defined in the main config.php as $CFG->upgradekey. If
2198 * it is defined there, then its value must be provided every time the site is
2199 * being upgraded, regardless the administrator is logged in or not.
2201 * This is supposed to be used at certain places in /admin/index.php only.
2203 * @param string|null $upgradekeyhash the SHA-1 of the value provided by the user
2205 function check_upgrade_key($upgradekeyhash) {
2208 if (isset($CFG->config_php_settings['upgradekey'])) {
2209 if ($upgradekeyhash === null or $upgradekeyhash !== sha1($CFG->config_php_settings['upgradekey'])) {
2210 if (!$PAGE->headerprinted) {
2211 $output = $PAGE->get_renderer('core', 'admin');
2212 echo $output->upgradekey_form_page(new moodle_url('/admin/index.php', array('cache' => 0)));
2215 // This should not happen.
2216 die('Upgrade locked');
2223 * Helper procedure/macro for installing remote plugins at admin/index.php
2225 * Does not return, always redirects or exits.
2227 * @param array $installable list of \core\update\remote_info
2228 * @param bool $confirmed false: display the validation screen, true: proceed installation
2229 * @param string $heading validation screen heading
2230 * @param moodle_url|string|null $continue URL to proceed with installation at the validation screen
2231 * @param moodle_url|string|null $return URL to go back on cancelling at the validation screen
2233 function upgrade_install_plugins(array $installable, $confirmed, $heading='', $continue=null, $return=null) {
2236 if (empty($return)) {
2237 $return = $PAGE->url;
2240 if (!empty($CFG->disableupdateautodeploy)) {
2244 if (empty($installable)) {
2248 $pluginman = core_plugin_manager::instance();
2251 // Installation confirmed at the validation results page.
2252 if (!$pluginman->install_plugins($installable, true, true)) {
2253 throw new moodle_exception('install_plugins_failed', 'core_plugin', $return);
2256 // Always redirect to admin/index.php to perform the database upgrade.
2257 // Do not throw away the existing $PAGE->url parameters such as
2258 // confirmupgrade or confirmrelease if $PAGE->url is a superset of the
2259 // URL we must go to.
2260 $mustgoto = new moodle_url('/admin/index.php', array('cache' => 0, 'confirmplugincheck' => 0));
2261 if ($mustgoto->compare($PAGE->url, URL_MATCH_PARAMS)) {
2262 redirect($PAGE->url);
2264 redirect($mustgoto);
2268 $output = $PAGE->get_renderer('core', 'admin');
2269 echo $output->header();
2271 echo $output->heading($heading, 3);
2273 echo html_writer::start_tag('pre', array('class' => 'plugin-install-console'));
2274 $validated = $pluginman->install_plugins($installable, false, false);
2275 echo html_writer::end_tag('pre');
2277 echo $output->plugins_management_confirm_buttons($continue, $return);
2279 echo $output->plugins_management_confirm_buttons(null, $return);
2281 echo $output->footer();
2286 * Method used to check the installed unoconv version.
2288 * @param environment_results $result object to update, if relevant.
2289 * @return environment_results|null updated results or null if unoconv path is not executable.
2291 function check_unoconv_version(environment_results $result) {
2294 if (!during_initial_install() && !empty($CFG->pathtounoconv) && file_is_executable(trim($CFG->pathtounoconv))) {
2295 $unoconvbin = \escapeshellarg($CFG->pathtounoconv);
2296 $command = "$unoconvbin --version";
2297 exec($command, $output);
2298 preg_match('/([0-9]+\.[0-9]+)/', $output[0], $matches);
2299 $currentversion = (float)$matches[0];
2300 $supportedversion = 0.7;
2301 if ($currentversion < $supportedversion) {
2302 $result->setInfo('unoconv version not supported');
2303 $result->setStatus(false);