setLocale() 공개 메소드

Sets the locale of this field.
또한 보기: Localizable
public setLocale ( $locale )
예제 #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);
     }
 }