You are here

protected function Notifications_Content_Node_List::text_subject in Notifications 7

Subject text

Overrides Notifications_Message_Template::text_subject

File

notifications_content/notifications_content.inc, line 368
Drupal Notifications Framework - Default class file

Class

Notifications_Content_Node_List
Template for a list of nodes, list of title, links

Code

protected function text_subject($options) {
  return array(
    '#tokens' => TRUE,
    '#markup' => t('Latest posts from [site:name]', array(), $options),
  );
}