Beispiel #1
0
 /**
  * Get Content Section Service
  *
  * Get Section service that lets you manipulate section objects
  *
  * @return \eZ\Publish\API\Repository\SectionService
  */
 public function getSectionService()
 {
     if ($this->sectionService !== null) {
         return $this->sectionService;
     }
     $this->sectionService = new SectionService($this->repository->getSectionService(), $this->signalDispatcher);
     return $this->sectionService;
 }