public static function Notifications_Custom_Subscription::build in Notifications 6.4
Build for a subscription type
Parameters
$template: Template object or subscription type
Overrides Notifications_Subscription::build
1 call to Notifications_Custom_Subscription::build()
- notifications_custom_build_subscription in notifications_custom/
notifications_custom.module - Get subscription object from custom subscription type
File
- notifications_custom/
notifications_custom.class.inc, line 22 - Drupal Notifications Framework - Default class file
Class
- Notifications_Custom_Subscription
- Message destination class
Code
public static function build($template, $default_class = 'Notifications_Custom_Subscription') {
return parent::build($template, $default_class);
}