I really like using CakePHP's HtmlHelper, except that it's so verbose.
I'd love to be able to write
div('header',
tag('ul',
tag('li', link('Home', '/')),
aa('class', 'nav')))
instead of
$html->div('header',
$html->tag('ul',
$html->tag('li', $html->link('Home', '/')),
aa('class', 'nav')))
How can I make this happen? (It's ok with me if functions like div,
tag and link are global. I'm willing to risk naming conflicts for this
extra convenience.)
Thanks,
Evan
Check out the new CakePHP Questions site http://cakeqs.org and help others with
their CakePHP related questions.
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en