I want to setup HtmlHelper::link() method so the default options array have escape = false.
How can I achieve this without changing the core class?
OBS: I al
In Cake 2.0
Create your OwnHelper class containing a link method, which extends HtmlHelper, in AppController specify:
$helpers = array('Html' => array('className' => 'OwnHelper'));
via ADmad