I mean for example the following has to generate a valid URL to MyController:$this->Html->link('some title', array('controller'=>'my-controller')); but what I get is an error that says the My-controller has to be created. i.e. it does not recognize the existing MyController. can it be done in behaviour?
in the your view.ctp
$this->Html->link('some title', array('controller'=>'MyController', 'action'=>'view', $id);
in the app/Config/routes.php
Router::connect('/my-controller/show-my-favorites/*', array('controller' => 'MyController', 'action' => 'view'));
Output links like
<a href="/my-controller/show-my-favorites/19">some title</a>
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
No comments:
Post a Comment