You are here

function Notifications_Subscription::format_long in Notifications 6.4

Same name and namespace in other branches
  1. 7 notifications.subscription.inc \Notifications_Subscription::format_long()

Format as long text

File

includes/notifications_subscription.class.inc, line 804
Drupal Notifications Framework - Default class file

Class

Notifications_Subscription
Message destination class

Code

function format_long($format = self::FORMAT_HTML) {
  return t('Subscription %id of type %type to: !values', array(
    '%id' => $this->sid,
    '%type' => $this
      ->get_type('title'),
    '!values' => $this
      ->format_name($format | self::FORMAT_INLINE),
  ));
}