Changes between Version 18 and Version 19 of DeveloperGuidelinesS3Framework
- Timestamp:
- 04/23/09 19:46:56 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelinesS3Framework
v18 v19 91 91 Different Flash styles can be set via: 92 92 {{{ 93 session. error=T("Unsupported format!")93 session.flash=DIV(T("Unsupported format!"),_class="error") 94 94 redirect(URL(r=request,f=resource)) 95 95 }}} 96 96 or (in a Multiple Table form.accepts): 97 97 {{{ 98 response. error=T("Form invalid!")98 response.flash=DIV(T("Form invalid!"),_class="error") 99 99 }}} 100 100 Supported styles are: … … 102 102 * .error 103 103 * .information 104 * .confirmation ( Standard T2 Flash messages are usually of this sort so we class them in the same way)104 * .confirmation (If no class is specified then we default to this) 105 105 106 106 === Settings ===