function Notifications_Custom_Subscription::get_name in Notifications 6.4
Get subscription short name.
Overrides Notifications_Subscription::get_name
1 call to Notifications_Custom_Subscription::get_name()
- Notifications_Custom_Subscription::form_checkbox in notifications_custom/
notifications_custom.class.inc - Format as a form checkbox
File
- notifications_custom/
notifications_custom.class.inc, line 26 - Drupal Notifications Framework - Default class file
Class
- Notifications_Custom_Subscription
- Message destination class
Code
function get_name() {
return check_plain(notifications_translate("custom:{$this->type}:name", $this
->get_type('name')));
}