Page::get()
\nn\t3::Page()->get($uid = NULL);
Get data of a page (from table "pages")
\nn\t3::Page()->get( $uid );
Copied!
| @return array
Source Code
public function get ( $uid = null ) {
$pageRepository = GeneralUtility::makeInstance( PageRepository::class );
return $pageRepository->getPage( $uid );
}
Copied!