ColdBox HMVC Documentation
ColdBox HMVC Documentation
Master Class
cfcasts
6.x
Introduction
Intro
Release History
About This Book
Author
For Newbies
60 Minute Quick Start
Getting Started
Getting Started Guide
Installation
Conventions
Configuration
The Basics
Request Context
Routing
Event Handlers
Layouts & Views
Models
HMVC
Modules
Core Modules
Locations
Parent Configuration
Module Layout
Module Service
Module Lifecycle
Module Registration
Module Activation
Module Unloading
Common Methods
Loading New Modules
Loading A-la-carte Modules
Module Events
ModuleConfig
Module Event Executions
URL Routing
Request Context Module Methods
Layout and View Renderings
Models
Module CF Mappings
Module Dependencies
Module Helpers
Module Bundles
Module Inception
Testing
Testing Quick Start
Testing ColdBox Applications
Digging Deeper
Async Programming
REST handler
Interceptors
Flash RAM
HTML Helper
ColdBox Proxy
Request Context Decorator
Controller Decorator
Recipes
Architecture Concepts
What is MVC
What is ColdBox
How ColdBox Works
Testing Concepts
External links
Source code
Issue tracker
LogBox
CacheBox
WireBox
Powered by GitBook

Loading New Modules

If you want to load a new module in your application that you have just installed you need to do a series of steps.

  1. Drop the module in any of the module locations defined or an a-la-carte location

  2. Call registerAndActivateModule(moduleName,[instantiationPath]) to register and activate the module

controller.getModuleService().registerAndActivateModule('TaskManager');
Previous
Common Methods
Next
Loading A-la-carte Modules
Last updated 3 years ago
Edit on GitHub