Updated Creating Plugins (markdown)

Zack 2021-04-07 14:17:13 -04:00
parent 5a3c8eb1c8
commit f80d2234e3
1 changed files with 6 additions and 2 deletions

@ -181,20 +181,24 @@ Deletes some saved data for plugin `pluginName` with key `key`.
***
#### `disableSetting(id)`
#### `disableSetting([collection,] category, id)`
Disables a BBD setting by id.
|Parameter|Type|Description|
|-|-|:-|
|`collection`|string|Id for the setting. Default: `settings`|
|`category`|string|Id for the setting.|
|`id`|string|Id for the setting.|
***
#### `enableSetting(id)`
#### `enableSetting([collection,] category, id)`
Enables a BBD setting by id.
|Parameter|Type|Description|
|-|-|:-|
|`collection`|string|Id for the setting. Default: `settings`|
|`category`|string|Id for the setting.|
|`id`|string|Id for the setting.|
***