FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper::getContentRecords PHP Method

getContentRecords() protected method

Get content records based on column and pid
protected getContentRecords ( ) : array
return array
    protected function getContentRecords()
    {
        $limit = $this->arguments['limit'];
        $pageUid = $this->getPageUid();
        $contentRecords = $this->getSlideRecords($pageUid, $limit);
        if (true === (bool) $this->arguments['render']) {
            $contentRecords = $this->getRenderedRecords($contentRecords);
        }
        return $contentRecords;
    }