public function Notifications_Entity::get_info in Notifications 7
Get information for specific instance.
This is useful for properties that can be overridden with alter hooks
4 calls to Notifications_Entity::get_info()
- Notifications_Subscription::field_types in ./notifications.subscription.inc 
- Get field types for this subscription type. The order is important as it will determine the field index
- Notifications_Subscription::field_values in ./notifications.subscription.inc 
- Get field values for this subscription type. The order is important as it will determine the field index
- Notifications_Subscription::object_types in ./notifications.subscription.inc 
- Get object types
- Notifications_Subscription::type_access in ./notifications.subscription.inc 
- User access function
File
- ./notifications.object.inc, line 52 
- Drupal Notifications Framework - Default class file
Class
- Notifications_Entity
- Base class for all Notifications entities
Code
public function get_info($property = NULL, $default = NULL) {
  return $this
    ->type_info($this->type, $property, $default);
}