You are here

function Notifications_Event::get_type in Notifications 7

Same name and namespace in other branches
  1. 6.4 includes/notifications_event.class.inc \Notifications_Event::get_type()

Get event type information

4 calls to Notifications_Event::get_type()
Notifications_Event::create_template in ./notifications.event.inc
Create message template to build this event as text
Notifications_Event::get_name in ./notifications.event.inc
Get object name
Notifications_Event::get_title in ./notifications.event.inc
Get object title
Notifications_Event::subscription_types in ./notifications.event.inc
Get subscription types triggered by this event

File

./notifications.event.inc, line 134
Drupal Notifications Framework - Default class file

Class

Notifications_Event
Notifications Event class

Code

function get_type($property = NULL, $default = NULL) {
  return $this
    ->type_info($this->type, $property, $default);
}