/**
  * Show the notice title in lists
  *
  * @param NoticeListItem $nli NoticeListItem being shown
  *
  * @return boolean hook value
  */
 function onStartShowNoticeTitle(NoticeListItem $nli)
 {
     $title = Notice_title::fromNotice($nli->notice);
     if (!empty($title)) {
         $nli->elementStart('h4', array('class' => 'p-name'));
         $nli->element('a', array('href' => $nli->notice->getUrl()), $title);
         $nli->elementEnd('h4');
         return false;
     }
     return true;
 }