Question
Is UDF can pass a component?
I have AppMgr.cfc and MyPlan.cfc
When I see codes written this way (see below), does it mean a component called "MyPlan" is created and then passed to another component?
<cfscript>
AppMgr.initApp();
AppMgr.setMyRecord( createObject"component","#application.rootdir#.RecFolder.MyPlan") );
.
.
.
</script>
When I see codes written this way (see below), does it mean a component called "MyPlan" is created and then passed to another component?
<cfscript>
AppMgr.initApp();
AppMgr.setMyRecord( createObject"component","#application.rootdir#.RecFolder.MyPlan") );
.
.
.
</script>