function Notifications_Subscription::format_long in Notifications 7
Same name and namespace in other branches
- 6.4 includes/notifications_subscription.class.inc \Notifications_Subscription::format_long()
Format as long text
File
- ./
notifications.subscription.inc, line 1420 - Drupal Notifications Framework - Default class file
Class
- Notifications_Subscription
- Common base for subscription type and subscription instance
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),
));
}