Open TheColorRed opened 11 years ago
When converting this:
<?php echo $this->Html->link( 'Add Post', array('controller' => 'posts', 'action' => 'add') ); ?>
To this: {{ html.link("Add Post", {"controller" : "posts", "action" : "add"}) }}
{{ html.link("Add Post", {"controller" : "posts", "action" : "add"}) }}
Nothing happens, a link should be generated, this issue happens along with other html items
I think this problem same as #13 "Lazy loading of Helpers". following line should be solved this problem. public $helpers = array('Html', 'Form');
When converting this:
To this:
{{ html.link("Add Post", {"controller" : "posts", "action" : "add"}) }}
Nothing happens, a link should be generated, this issue happens along with other html items