function notifications_subscription_type in Notifications 7
Get info about subscription types
Parameters
$type: String, the subscriptions type OPTIONAL
$property: String, a specific property to retrieve info from OPTIONAL
18 calls to notifications_subscription_type()
- notifications_admin_status_page in ./
notifications.admin.inc - Current subscriptions page
- notifications_admin_subscriptions_settings in ./
notifications.admin.inc - Subscription settings
- notifications_content_test_template_form in notifications_content/
notifications_content.admin.inc - Template testing form
- notifications_manage_subscriptions_filters in ./
notifications.manage.inc - List node administration filters that can be applied.
- notifications_manage_subscriptions_form in ./
notifications.manage.inc - Administer subscriptions. For user tabs and admin tabs
File
- ./
notifications.module, line 531 - Notifications module
Code
function notifications_subscription_type($type = NULL, $property = NULL, $default = NULL) {
return notifications_info('subscription types', $type, $property, $default);
}