You are here

function notifications_field_type in Notifications 7

Same name and namespace in other branches
  1. 6.4 includes/object.inc \notifications_field_type()

Get information about subscriptions fields

Replaces notifications_field_type()

1 call to notifications_field_type()
Notifications_Field::build_type in ./notifications.field.inc
Build field instance

File

./notifications.module, line 914
Notifications module

Code

function notifications_field_type($type = NULL, $property = NULL, $default = NULL) {
  $fields = notifications_info('field types');
  return messaging_array_info($fields, $type, $property, $default);
}