Merge branch 'MDL-40604-master' of git://github.com/danpoltawski/moodle
[moodle.git] / admin / plugins.php
blob8ceba12c755a07658ab07aaf1871c13811cf7c6c
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
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.
9 //
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/>.
18 /**
19 * UI for general plugins management
21 * Supported HTTP parameters:
23 * ?fetchremote=1 - check for available updates
24 * ?updatesonly=1 - display plugins with available update only
25 * ?contribonly=1 - display non-standard add-ons only
26 * ?uninstall=foo_bar - uninstall the given plugin
27 * ?delete=foo_bar - delete the plugin folder (it must not be installed)
28 * &confirm=1 - confirm the uninstall or delete action
30 * @package core
31 * @subpackage admin
32 * @copyright 2011 David Mudrak <david@moodle.com>
33 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36 require_once(dirname(dirname(__FILE__)) . '/config.php');
37 require_once($CFG->libdir . '/adminlib.php');
38 require_once($CFG->libdir . '/pluginlib.php');
39 require_once($CFG->libdir . '/filelib.php');
41 admin_externalpage_setup('pluginsoverview');
42 require_capability('moodle/site:config', context_system::instance());
44 $fetchremote = optional_param('fetchremote', false, PARAM_BOOL);
45 $updatesonly = optional_param('updatesonly', false, PARAM_BOOL);
46 $contribonly = optional_param('contribonly', false, PARAM_BOOL);
47 $uninstall = optional_param('uninstall', '', PARAM_COMPONENT);
48 $delete = optional_param('delete', '', PARAM_COMPONENT);
49 $confirmed = optional_param('confirm', false, PARAM_BOOL);
51 $output = $PAGE->get_renderer('core', 'admin');
53 $pluginman = plugin_manager::instance();
55 if ($uninstall) {
56 require_sesskey();
57 $pluginfo = $pluginman->get_plugin_info($uninstall);
59 // Make sure we know the plugin.
60 if (is_null($pluginfo)) {
61 throw new moodle_exception('err_uninstalling_unknown_plugin', 'core_plugin', '', array('plugin' => $uninstall),
62 'plugin_manager::get_plugin_info() returned null for the plugin to be uninstalled');
65 $pluginname = $pluginman->plugin_name($pluginfo->component);
66 $PAGE->set_title($pluginname);
67 $PAGE->navbar->add(get_string('uninstalling', 'core_plugin', array('name' => $pluginname)));
69 if (!$pluginman->can_uninstall_plugin($pluginfo->component)) {
70 throw new moodle_exception('err_cannot_uninstall_plugin', 'core_plugin', '',
71 array('plugin' => $pluginfo->component),
72 'plugin_manager::can_uninstall_plugin() returned false');
75 if (!$confirmed) {
76 $continueurl = new moodle_url($PAGE->url, array('uninstall' => $pluginfo->component, 'sesskey' => sesskey(), 'confirm' => 1));
77 echo $output->plugin_uninstall_confirm_page($pluginman, $pluginfo, $continueurl);
78 exit();
80 } else {
81 $progress = new progress_trace_buffer(new text_progress_trace(), false);
82 $pluginman->uninstall_plugin($pluginfo->component, $progress);
83 $progress->finished();
85 if ($pluginman->is_plugin_folder_removable($pluginfo->component)) {
86 $continueurl = new moodle_url($PAGE->url, array('delete' => $pluginfo->component, 'sesskey' => sesskey(), 'confirm' => 1));
87 echo $output->plugin_uninstall_results_removable_page($pluginman, $pluginfo, $progress, $continueurl);
88 // Reset op code caches.
89 if (function_exists('opcache_reset')) {
90 opcache_reset();
92 exit();
94 } else {
95 echo $output->plugin_uninstall_results_page($pluginman, $pluginfo, $progress);
96 // Reset op code caches.
97 if (function_exists('opcache_reset')) {
98 opcache_reset();
100 exit();
105 if ($delete and $confirmed) {
106 require_sesskey();
107 $pluginfo = $pluginman->get_plugin_info($delete);
109 // Make sure we know the plugin.
110 if (is_null($pluginfo)) {
111 throw new moodle_exception('err_removing_unknown_plugin', 'core_plugin', '', array('plugin' => $delete),
112 'plugin_manager::get_plugin_info() returned null for the plugin to be deleted');
115 $pluginname = $pluginman->plugin_name($pluginfo->component);
116 $PAGE->set_title($pluginname);
117 $PAGE->navbar->add(get_string('uninstalling', 'core_plugin', array('name' => $pluginname)));
119 // Make sure it is not installed.
120 if (!is_null($pluginfo->versiondb)) {
121 throw new moodle_exception('err_removing_installed_plugin', 'core_plugin', '',
122 array('plugin' => $pluginfo->component, 'versiondb' => $pluginfo->versiondb),
123 'plugin_manager::get_plugin_info() returned not-null versiondb for the plugin to be deleted');
126 // Make sure the folder is removable.
127 if (!$pluginman->is_plugin_folder_removable($pluginfo->component)) {
128 throw new moodle_exception('err_removing_unremovable_folder', 'core_plugin', '',
129 array('plugin' => $pluginfo->component, 'rootdir' => $pluginfo->rootdir),
130 'plugin root folder is not removable as expected');
133 // Make sure the folder is within Moodle installation tree.
134 if (strpos($pluginfo->rootdir, $CFG->dirroot) !== 0) {
135 throw new moodle_exception('err_unexpected_plugin_rootdir', 'core_plugin', '',
136 array('plugin' => $pluginfo->component, 'rootdir' => $pluginfo->rootdir, 'dirroot' => $CFG->dirroot),
137 'plugin root folder not in the moodle dirroot');
140 // So long, and thanks for all the bugs.
141 fulldelete($pluginfo->rootdir);
142 // Reset op code caches.
143 if (function_exists('opcache_reset')) {
144 opcache_reset();
146 redirect($PAGE->url);
149 $checker = available_update_checker::instance();
151 // Filtering options.
152 $options = array(
153 'updatesonly' => $updatesonly,
154 'contribonly' => $contribonly,
157 if ($fetchremote) {
158 require_sesskey();
159 $checker->fetch();
160 redirect(new moodle_url($PAGE->url, $options));
163 $deployer = available_update_deployer::instance();
164 if ($deployer->enabled()) {
165 $myurl = new moodle_url($PAGE->url, array('updatesonly' => $updatesonly, 'contribonly' => $contribonly));
166 $deployer->initialize($myurl, new moodle_url('/admin'));
168 $deploydata = $deployer->submitted_data();
169 if (!empty($deploydata)) {
170 echo $output->upgrade_plugin_confirm_deploy_page($deployer, $deploydata);
171 die();
175 echo $output->plugin_management_page($pluginman, $checker, $options);