You are here

protected function Notifications_Object::invoke_all in Notifications 7

Run module_invoke_all('notifications_object_[type]') with this (Drupal) object

2 calls to Notifications_Object::invoke_all()
Notifications_Object::subscribe_options in ./notifications.object.inc
Get subscription options for object, account. Only enabled subscription types
Notifications_Object::subscription_types in ./notifications.object.inc
Get subscription types for this object

File

./notifications.object.inc, line 247
Drupal Notifications Framework - Default class file

Class

Notifications_Object
Wrapper for Drupal objects

Code

protected function invoke_all($op, $param = NULL) {
  return module_invoke_all('notifications_object_' . $this->type, $op, $this
    ->get_object(), $param);
}