getSections() public method

Returns the body and header sections created by the clients configured for the given page name.
public getSections ( string $pageName ) : array
$pageName string Name of the configured page
return array Associative list with body and header output separated by client name
 /**
  * Returns the body and header output for the given page name
  *
  * @param string $pageName Page name as defined in the Settings.yaml file
  */
 protected function getSections($pageName)
 {
     return $this->page->getSections($this->request, $pageName);
 }