Symfony forum 

Search for i18n in forum 

http://www.symfony-project.org/forum/index.php?t=msg&th=3598&start=0&

> Why do you get zero hits when searching for "i18n" using the forum search
> function? I now for sure several post that have the word i18n mentioned.

I think the search engine is quite poor, it could be words that are too short, or it may have overly restrictive rules about words being composed of numbers. I think I have raised this before, but understandably the revamp of the forum facilities is probably not high on the agenda of the core team.

documented on: 06 November 2006, halfer

Search for i18n in forum 

Try google: http://www.google.com/search?q=i18n+site:symfony-project.org/forum

documented on: 01 December 2006, yoyo

how to use getRequestParameter in partial 

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

how to use getRequestParameter in partial 

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