/**
  * Sets the page title using the configured pageTitleFormat
  * 
  * @param string $title
  * @return void
  */
 protected function setPageTitle($title)
 {
     $this->pageRenderer->setPageTitle(str_replace('###TITLE###', $title, $this->configuration['pageTitleFormat']));
 }