Skip to content

settings.list()

jackcarey edited this page Jul 16, 2022 · 1 revision

Gets list of each setting and it's value.

Returns: An object containing all settings and their values.

Example

// Global
Controller.globalSettings.list();

>> Object {
>>     setting: value,
>>     setting: value,
>>     
>>     setting: value
>> }
// Per-controller
Controller.getController(0).settings.list();

>> Object {
>>     setting: value,
>>     setting: value,
>>     
>>     setting: value
>> }
Clone this wiki locally