eZ\Publish\Core\REST\Client\SectionService::loadSections PHP Метод

loadSections() публичный Метод

Loads all sections.
public loadSections ( ) : array
Результат array of {@link \eZ\Publish\API\Repository\Values\Content\Section}
    public function loadSections()
    {
        $response = $this->client->request('GET', $this->requestParser->generate('sections'), new Message(array('Accept' => $this->outputVisitor->getMediaType('SectionList'))));
        return $this->inputDispatcher->parse($response);
    }