Symfony\Component\Form\Field::setLocale PHP Method

setLocale() public method

Sets the locale of this field.
See also: Localizable
public setLocale ( $locale )
    public function setLocale($locale)
    {
        $this->locale = $locale;

        if ($this->valueTransformer !== null && $this->valueTransformer instanceof Localizable) {
            $this->valueTransformer->setLocale($locale);
        }
    }

Usage Example

Example #1
0
 /**
  * Sets the locale of this field.
  *
  * @see Localizable
  */
 public function setLocale($locale)
 {
     parent::setLocale($locale);
     foreach ($this->fields as $field) {
         $field->setLocale($locale);
     }
 }