You are here

public function Notifications_Subscription::is_stored in Notifications 7

Check whether this is a stored instance

6 calls to Notifications_Subscription::is_stored()
Notifications_Subscription::delete in ./notifications.subscription.inc
Delete from db
Notifications_Subscription::get_fields in ./notifications.subscription.inc
Get fields as array of field objects
Notifications_Subscription::get_link_options in ./notifications.subscription.inc
Get default link options
Notifications_Subscription::get_link_type in ./notifications.subscription.inc
Get default link type (susbscribe || unsubscribe)
Notifications_Subscription::is_instance in ./notifications.subscription.inc
Check whether this is a subscription instance.

... See full list

File

./notifications.subscription.inc, line 876
Drupal Notifications Framework - Default class file

Class

Notifications_Subscription
Common base for subscription type and subscription instance

Code

public function is_stored() {
  return !empty($this->sid);
}