Networking\InitCmsBundle\Model\ContentRouteInterface::setLocale PHP Метод

setLocale() публичный Метод

public setLocale ( string $locale )
$locale string
    public function setLocale($locale);

Usage Example

Пример #1
0
 /**
  * @param  ContentRouteInterface $contentRoute
  * @return PageSnapshot
  */
 public function setContentRoute(ContentRouteInterface $contentRoute)
 {
     $contentRoute->setClassType(get_class($this));
     $contentRoute->setLocale($this->page->getLocale());
     $contentRoute->setTemplateName($this->page->getTemplateName());
     $this->contentRoute = $contentRoute;
     return $this;
 }