From 4b481cbacf34485b98fff13c44d384f7d7827e14 Mon Sep 17 00:00:00 2001 From: Arthur Date: Fri, 4 Apr 2025 09:07:13 -0700 Subject: [PATCH] 19073 allow plugins to be marked as hidden or disabled in plugins table --- docs/configuration/plugins.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/configuration/plugins.md b/docs/configuration/plugins.md index a3e691f63..ec40777db 100644 --- a/docs/configuration/plugins.md +++ b/docs/configuration/plugins.md @@ -33,3 +33,21 @@ Note that a plugin must be listed in `PLUGINS` for its configuration to take eff --- +## PLUGINS_CONFIG + +Default: Empty + +This parameter holds configuration settings for how the individual plugins are displayed in the plugins table under Admin->System->Plugins. Declaring `hidden` as True will make it so the plugin is not shown in the table. Declaring `disabled` will make it show the plugin in the table, but it won't be linked to the details and installation page for the plugin. An example configuration is shown below: + +```python +PLUGINS_TABLE_CONFIG = { + 'plugin1': { + 'hidden': True, + }, + 'plugin2': { + 'disabled': True, + }, +} +``` + +---