Guest User

Untitled

a guest
Apr 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <!--- @@Copyright: Copyright (c) 2009 Daemon Pty Limited. All rights reserved. --->
  2. <!--- @@displayname: cigar journal --->
  3. <cfcomponent displayname="journal" output="false" extends="farcry.core.packages.types.types"
  4. hint="An example of a cigar journal."
  5. bObjectBroker="true" bFriendly="true" fuAlias="journal">
  6.  
  7. <!---
  8. // type properties
  9. --------------------------------------------------------------------------------------------------->
  10. <cfproperty
  11. name="title" type="string" hint="Title" required="true" default=""
  12. ftSeq="1" ftFieldset="General Details" ftLabel="Title" />
  13.  
  14. <cfproperty
  15. name="journal" type="longchar" hint="Journal" required="true" default=""
  16. ftSeq="2" ftFieldset="General Details" ftLabel="Journal" />
  17.  
  18. <cfproperty
  19. name="relatedLinks" type="longchar" hint="List of related links" required="false" default=""
  20. ftSeq="3" ftFieldset="General Details" ftLabel="Related Links"
  21. fttype="linkwddx" />
  22.  
  23. <cfproperty
  24. name="aCigars" type="array" hint="Title" required="true" default=""
  25. ftSeq="4" ftFieldset="General Details" ftLabel="Cigars"
  26. fttype="array" ftjoin="cigar" />
  27.  
  28. </cfcomponent>
Add Comment
Please, Sign In to add comment