You are here

function Notifications_Subscription::get_type in Notifications 6.4

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

Get subscription type data

12 calls to Notifications_Subscription::get_type()
Notifications_Custom_Subscription::get_default in notifications_custom/notifications_custom.class.inc
Get default value for a possible checkbox
Notifications_Custom_Subscription::get_description in notifications_custom/notifications_custom.class.inc
Get description
Notifications_Custom_Subscription::get_name in notifications_custom/notifications_custom.class.inc
Get subscription short name.
Notifications_Custom_Subscription::get_title in notifications_custom/notifications_custom.class.inc
Notifications_Custom_Subscription::is_visible in notifications_custom/notifications_custom.class.inc
Check visibility of this subscription type

... See full list

File

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

Class

Notifications_Subscription
Message destination class

Code

function get_type($property = NULL) {
  return empty($this->type) ? NULL : notifications_subscription_types($this->type, $property);
}