It seems to me that the objects in CakePHP are too overloaded. I output debug in my layout: debug($this);and I found 6 instances of the HTML helper object:
[Html] => HtmlHelper Object
([tags] => Array
([meta] => <meta%s/>
[metalink] => <link href="%s"%s/>
[link] => <a href="%s"%s>%s</a>
[mailto] => <a href="mailto:%s" %s>%s</a>
[form] => <form %s>
.........................................
.........................................
Why is it so possible to reduce this value to 1 instance?
source
share