Exemplo n.º 1
0
 /**
  * Set the title of the topic.
  * @param $module
  * @param $topic
  * @return string
  */
 public function topicPageTitle($module, $topic) {
   $info = $this->advanced_help->getTopic($module, $topic);
   if (!$info) {
     throw new NotFoundHttpException();
   }
   return $info['title'];
 }