function Notifications_Subscription::serialize_type in Notifications 7
Same name and namespace in other branches
- 6.4 includes/notifications_subscription.class.inc \Notifications_Subscription::serialize_type()
Serialize type and conditions
File
- ./
notifications.subscription.inc, line 1205 - Drupal Notifications Framework - Default class file
Class
- Notifications_Subscription
- Common base for subscription type and subscription instance
Code
function serialize_type() {
return implode('/', array(
$this->type,
$this
->serialize_fields(),
));
}