The pluggability feature of WManager is a key factor of success for the whole WManager ecosystem.
WManager allows to create their own extension for WManager which can be use only for local instance. Extension folder should be placed in the modules folder of the application.
Structure of the extension:
Extension folder can be named as anything which should be placed inside modules folder. Extension folder should contain model, view controller folder. Any routes for the extension should be placed in config folder. Any js and css files should be placed inside assets folder in the specific directory. i.e. css files should be placed in dummy/assets/css/ folder and js files should be placed in dummy/assets/js/. Any Helper function for the extension should be placed in helpers folder of the particular extension. Any Libraries should be placed in the libraries folder of the particular extension.
Example:
dependencies table
template | application |
type | js |
filename | dummy.js |
path | /application/modules/dummy/assets/js/dummy.js |
module | dummy |
order | 1 |
module_order | 1 |
template | application |
type | css |
filename | dummy.css |
path | /application/modules/dummy/assets/js/dummy.css |
module | dummy |
order | 1 |
module_order | 1 |
Note :
Routes for the extension should be in routes.php file which will be placed in config folder of the application.
Example:
$route ['module/dummy'] = "dummy/controller/function_name";