Author: Yorkie Chadwick (y.chadwick@networking.ch)
Inheritance: implements Networking\InitCmsBundle\Model\PageInterface
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;
 }