Common Methods
Here are the most common methods you can use to manage modules:
reloadAll()
: Reload all modules in the application. This clears out all module settings, re-registers from disk, re-configures them and activates themreload(module)
: Target a module reload by nameunloadAll()
: Unload all modulesunload(module)
: Target a module unload by nameregisterAllModules()
: Registers all module configurationsregisterModule(moduleName,[instantiationPath])
: Target a module configuration registrationactivateAllModules()
: Activate all registered modulesactivateModule(moduleName)
: Target activate a module that has been registered alreadygetLoadedModules()
: Get an array of loaded module namesrebuildModuleRegistry()
: Rescan all the module locations for newly installed modules and rebuild the registry so these modules can be registered and activated.registerAndActivateModule(moduleName,[instantiationPath])
: Register and Activate a new module
With these methods you can get creative and target the reloading, unloading or loading of specific modules. These methods really open the opportunity to build an abstraction API where you can install modules in your application on the fly and then register and activate them. You can also do the inverse and deactivate modules in a running application.
Last updated