<% SysMgr.moduleSetup %> |
macro checks if there are any modules present
and if they need to be included in the system setup page |
Sourcecode in SysMgr/macros.js:
1: function moduleSetup_macro(param) { 2: for (var i in app.modules) 3: this.applyModuleMethod(app.modules[i], "renderSetup", param); 4: return; 5: } |