You are here

function theme_notifications_feed_items in Notifications 6

Theme item list for the message

Parameters

$items: Array

1 theme call to theme_notifications_feed_items()
notifications_feed_token_values in notifications_feed/notifications_feed.module
Implementation of hook_token_values()

File

notifications_feed/notifications_feed.module, line 320
Subscriptions to FeedAPI feeds

Code

function theme_notifications_feed_items($items) {
  if ($items) {
    return '- ' . implode("\n- ", $items) . "\n";
  }
  else {
    return '';
  }
}