Guest User

Untitled

a guest
Dec 8th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfif thisTag.executionMode eq "end">
  2.  
  3.     <cfoutput>
  4.     <cfloop list="warning,error,success,info" index="type">
  5.         <cfif structKeyExists(caller, arguments.type)>
  6.             <div class="alert-message #arguments.type#">
  7.                 <a class="close" href="##">x</a>
  8.                 <p>#caller[arguments.type]#</p>
  9.             </div>
  10.         </cfif>
  11.     </cfloop>
  12.     </cfoutput>
  13.  
  14. </cfif>
Add Comment
Please, Sign In to add comment