MDL-66119 core: Add check for uninstalling plugins from the admin gui

This commit is contained in:
[Peter Burnett]
2019-07-26 09:27:32 +10:00
parent f622ee97e3
commit 442eeac33c
2 changed files with 11 additions and 0 deletions
+5
View File
@@ -2233,6 +2233,11 @@ class core_plugin_manager {
* @return bool
*/
protected function common_uninstall_check(\core\plugininfo\base $pluginfo) {
global $CFG;
// Check if uninstall is allowed from the GUI.
if (!empty($CFG->uninstallclionly) && (!CLI_SCRIPT)) {
return false;
}
if (!$pluginfo->is_uninstall_allowed()) {
// The plugin's plugininfo class declares it should not be uninstalled.