PageRenderTime 13ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/wheels/tests/_assets/models/TagFalseCallbacks.cfc

http://cfwheels.googlecode.com/
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
  1. <cfcomponent extends="Model">
  2. <cffunction name="init">
  3. <cfset table("tags")>
  4. <cfset afterSave("callbackThatReturnsFalse")>
  5. <cfset afterDelete("callbackThatReturnsFalse")>
  6. </cffunction>
  7. <cffunction name="callbackThatReturnsFalse">
  8. <cfreturn false>
  9. </cffunction>
  10. </cfcomponent>