HTML Snippets
Using Html value object
$text = \Templating\View\Html::create('<i>Some text</i>');
echo $this->Html->link($text, '/');
results in
Some text
No escapeTitle necessary here anymore.
$text = \Templating\View\Html::create('<i>Some text</i>');
echo $this->Html->link($text, '/');
results in
Some text
No escapeTitle necessary here anymore.
Send your feedback or bugreport!