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;
 }