Module
The module object
Creating a new Module
Creating a module can be done by using breeze.registerModule(String name, String description, Object obj): Module
Module functions
enable
This function gets called whenever the module is enabled.
disable
disable
This function gets called whenever the module is disabled.
settingChanged
settingChanged
This function gets called whenever one of the settings in the module is changed by the user.
Referencing from within the object
object
Inside of the object you supply when registering the module you can reference the module itself directly via this.module
Getting a existing Module
To get the object for a existing module in breeze you can use breeze.getModule(String name): Module
getName(): String
getName(): String
Returns the name of the module.
getDescription(): String
getDescription(): String
Returns the description of the module.
enabled(): boolean
enabled(): boolean
Tells you if the module is enabled or not.
toggle(): void
toggle(): void
Will enable the module if its currently disabled, if the module is enabled already it will turn the module off.
enable(): void
enable(): void
Enables the module, if the module is already enabled this won't do anything.
disable(): void
disable(): void
Disables the module, if the module is already disabled this won't do anything
getSetting(String name):
Setting
getSetting(String name):
Setting
Will get the setting from the module that matches the name given, if the setting can not be found this will return null.
EventsSettingsLast updated