This commit is contained in:
Adrian Greeve 2019-07-29 14:06:32 +08:00
commit 6aa6d5b113
2 changed files with 11 additions and 0 deletions

View File

@ -620,6 +620,12 @@ $CFG->admin = 'admin';
//
// $CFG->debugsessionlock = 5;
//
// Uninstall plugins from CLI only. This stops admins from uninstalling plugins from the graphical admin
// user interface, and forces plugins to be uninstalled from the Command Line tool only, found at
// admin/cli/plugin_uninstall.php.
//
// $CFG->uninstallclionly = true;
//
//=========================================================================
// 7. SETTINGS FOR DEVELOPMENT SERVERS - not intended for production use!!!
//=========================================================================

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.