/** * Get event favorites. * * @param Model_Event $event * @return View_Users_List */ public function section_event_favorites(Model_Event $event) { $section = new View_Users_List($favorites = $event->find_favorites()); $section->title = __('Favorites') . ' <small><i class="icon-heart icon-white"></i> ' . count($favorites) . '</small>'; return $section; }