FluidTYPO3\Fluidpages\Provider\SubPageLanguageOverlayProvider::getControllerActionReferenceFromRecord PHP Method

getControllerActionReferenceFromRecord() public method

    public function getControllerActionReferenceFromRecord(array $row)
    {
        $pageRow = $this->recordService->getSingle('pages', '*', $row['pid']);
        if (true === empty($pageRow[self::FIELD_ACTION_SUB])) {
            $pageRow = $this->pageService->getPageTemplateConfiguration($pageRow['uid']);
        }
        return $pageRow[self::FIELD_ACTION_SUB];
    }