You are here

function theme_notifications_digest_short_list in Notifications 6.4

Item list with multiple lines

1 theme call to theme_notifications_digest_short_list()
theme_notifications_digest_short_body in notifications_digest/notifications_digest.module
Theme notifications digest

File

notifications_digest/notifications_digest.module, line 409
Notifications digest module

Code

function theme_notifications_digest_short_list($lines, $group) {
  $output = '<ul>';
  foreach ($lines as $line) {
    $output .= theme('notifications_digest_short_line', $line, $group);
  }
  $output .= '</ul>';
  return $output;
}