up vote 0 down vote favorite
share [g+] share [fb]

I want to use the view for one controller action inside another view with CakePHP, and passing some variables. Anybody has been work on this situation or something similar?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I think I understand what you're attempting, but I'm pretty sure it's not directly possible - as you've found.

What I tend to do in this situation is find the amount of code I want to replicate in both views, put it in an element and then call $this->renderElement('path-to/element') inside both views.

You could do something with $this->requestAction('controller/function') but it carries a large overhead.

I would suggest considering reformatting your code and using the element suggestion above.

link|improve this answer
1  
renderElement() is deprecated (resp. no longer exists in the coming 1.3 release), use element() instead. – dhofstet Nov 22 '09 at 7:05
Thank you Dave, I'm working in this way. I just work to remove the requestAction because at the end with a few changes I need a form without any previous logic in a controller. – jald Nov 23 '09 at 16:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.