Exemplo n.º 1
0
Arquivo: topic.php Projeto: anqh/forum
 /**
  * Get private topic recipients.
  *
  * @param   Model_Forum_Private_Topic  $topic
  * @return  View_Users_List
  */
 public function section_recipients(Model_Forum_Private_Topic $topic)
 {
     $section = new View_Users_List($recipients = $topic->recipients());
     $section->title = __('Recipients') . ' <small><i class="icon-user"></i> ' . count($recipients) . '</small>';
     return $section;
 }