This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private void function generateAllPossibleNonExistentRules() event=false { | |
| var configStruct = getSettingsBean().getConfigStruct(); | |
| var HandlersInvocationPath = configStruct.HandlersInvocationPath; | |
| var RegisteredHandlers = configStruct.RegisteredHandlers; | |
| var HandlerEvents = {}; | |
| for(var i = 1; i<=ListLen(RegisteredHandlers);i++) { | |
| var thisHandler = listGetAt(RegisteredHandlers,i); | |
| var thisHandlerPath = HandlersInvocationPath & '.' & thisHandler; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Application.cfc | |
| public boolean function onRequestStart(String targetPage){ | |
| if(structKeyExists(url,"ormreload")) { | |
| ORMReload(); | |
| } | |
| return true; | |
| } |
NewerOlder