eZ\Publish\Core\REST\Client\Repository::getSectionService PHP 메소드

getSectionService() 공개 메소드

Get Section service that lets you manipulate section objects
public getSectionService ( ) : eZ\Publish\API\Repository\SectionService
리턴 eZ\Publish\API\Repository\SectionService
    public function getSectionService()
    {
        if (null === $this->sectionService) {
            $this->sectionService = new SectionService($this->client, $this->inputDispatcher, $this->outputVisitor, $this->requestParser);
        }
        return $this->sectionService;
    }