public function Notifications_Subscription::get_title in Notifications 7
Same name and namespace in other branches
- 6.4 includes/notifications_subscription.class.inc \Notifications_Subscription::get_title()
Get object title
Overrides Notifications_Entity::get_title
1 call to Notifications_Subscription::get_title()
- Notifications_Subscription::get_name in ./
notifications.subscription.inc - Get subscription short name.
File
- ./
notifications.subscription.inc, line 1438 - Drupal Notifications Framework - Default class file
Class
- Notifications_Subscription
- Common base for subscription type and subscription instance
Code
public function get_title() {
return $this
->get_type('title', t('Subscription'));
}