You are here

function notifications_event_type in Notifications 7

Get information about event types. Invoking this function will also load the event API

Parameters

$typekey: Event type key

$property: Property to return

10 calls to notifications_event_type()
notifications_admin_events_form in ./notifications.admin.inc
Event configuration administration
notifications_admin_event_triggers in ./notifications.admin.inc
Get assigned triggers for event
notifications_content_node_event in notifications_content/notifications_content.module
Build node event. We can have 'node-[type]' or plain 'node' events
notifications_content_node_event_enabled in notifications_content/notifications_content.module
Check whether a specific event type is enabled for this node type
Notifications_Event::type_info in ./notifications.event.inc
Get subscription type information

... See full list

File

./notifications.module, line 504
Notifications module

Code

function notifications_event_type($typekey = NULL, $property = NULL, $default = NULL) {
  return notifications_info('event types', $typekey, $property, $default);
}