webmcp

view framework/env/ui_deprecated/tag.lua @ 79:3a6962b9121c

Anchor support for encode.url{...}, ui.link{...} and ui.paginate{...}
author jbe
date Wed Jun 27 18:57:53 2012 +0200 (2012-06-27)
parents 9fdfb27f8e67
children
line source
1 function ui_deprecated.tag(name, args)
3 local html_options = args.html_options or {}
5 slot.put('<', name, ui_deprecated._stringify_table(html_options), '>')
7 if args.label then
8 ui_deprecated.label(args.label)
9 end
11 if type(args.content) == 'function' then
12 args.content()
13 else
14 ui_deprecated.text(args.content)
15 end
17 slot.put('</', name, '>')
20 end

Impressum / About Us