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, + }, +} +``` + +---