http://www.symfony-project.org/forum/index.php/m/21115/
how to use getRequestParameter in partial?
In the partial template of a partial field can access to the current object "through a variable named by the class ($comment in this example). " http://www.symfony-project.org/book/trunk/14-Generators
So, I've copied and changed from
$this->getRequestParameter('id')
to:
$comment->getRequestParameter('id')
in my partial, but this is what I get.
Fatal error: Call to undefined method Comment::getRequestParameter() in /var/www/html/cm/apps/reqs/modules/comment/templates/_comments.php
please help. thanks
in partials:
$sf_request->getParameter('id');
or
$sf_params->get('id');
see:
http://www.symfony-project.org/book/trunk/07-Inside-the-View-Layer#Template%20Shortcuts
documented on: 06 February 2007, pezetgee