Beispiel #1
0
 /**
  * Add sections
  *
  * @param \Softlogo\CMSBundle\Entity\Section $sections
  * @return Section
  */
 public function addSection(\Softlogo\CMSBundle\Entity\Section $sections)
 {
     $sections->setParent($this);
     $sections->setIsMainSection(false);
     $this->sections[] = $sections;
     return $this;
 }