/examples/ParentApplication/api/Application.cfc
http://github.com/atuttle/Taffy · ColdFusion CFScript · 16 lines · 10 code · 6 blank · 0 comment · 0 complexity · 8aeac8b32c1d5f53c1dead1adca8b579 MD5 · raw file
- component extends="taffy.core.api" {
- this.name = "taffy_ParentAppExample";//same name as api folder application.cfc
- variables.framework = {};
- variables.framework.beanFactory = "";
- function onApplicationStart(){
- include "../mixin/appInit.cfm";
- variables.framework.beanFactory = application.beanFactory;
- return super.onApplicationStart();
- }
- }