/examples/ParentApplication/api/Application.cfc
ColdFusion CFScript | 16 lines | 10 code | 6 blank | 0 comment | 0 complexity | 8aeac8b32c1d5f53c1dead1adca8b579 MD5 | raw file
1component extends="taffy.core.api" { 2 3 this.name = "taffy_ParentAppExample";//same name as api folder application.cfc 4 5 variables.framework = {}; 6 variables.framework.beanFactory = ""; 7 8 function onApplicationStart(){ 9 include "../mixin/appInit.cfm"; 10 11 variables.framework.beanFactory = application.beanFactory; 12 13 return super.onApplicationStart(); 14 } 15 16}