/wheels/tests/_assets/models/TagFalseCallbacks.cfc
ColdFusion CFScript | 13 lines | 10 code | 3 blank | 0 comment | 0 complexity | c48a30961b15186f1eb962b787fb0e36 MD5 | raw file
Possible License(s): Apache-2.0, CPL-1.0
- <cfcomponent extends="Model">
-
- <cffunction name="init">
- <cfset table("tags")>
- <cfset afterSave("callbackThatReturnsFalse")>
- <cfset afterDelete("callbackThatReturnsFalse")>
- </cffunction>
-
- <cffunction name="callbackThatReturnsFalse">
- <cfreturn false>
- </cffunction>
-
- </cfcomponent>