You are here

function Notifications_Subscription::field_types in Notifications 7

Get field types for this subscription type. The order is important as it will determine the field index

2 calls to Notifications_Subscription::field_types()
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::type_fields in ./notifications.subscription.inc
Get subscription type fields as array of field objects

File

./notifications.subscription.inc, line 1597
Drupal Notifications Framework - Default class file

Class

Notifications_Subscription
Common base for subscription type and subscription instance

Code

function field_types() {
  return isset($this->field_types) ? $this->field_types : $this
    ->get_info('field_types', array());
}