You are here

function Notifications_Subscription::get_type_fields in Notifications 7

Same name and namespace in other branches
  1. 6.4 includes/notifications_subscription.class.inc \Notifications_Subscription::get_type_fields()

Get type fields, the ones that have a value set for this type

3 calls to Notifications_Subscription::get_type_fields()
Notifications_Subscription::element_fields in ./notifications.subscription.inc
Get all fields (editable and not editable)
Notifications_Subscription::element_info in ./notifications.subscription.inc
Get subscription form info element
Notifications_Subscription::is_editable in ./notifications.subscription.inc
Whether this subscription's fields are editable or not

File

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

Class

Notifications_Subscription
Common base for subscription type and subscription instance

Code

function get_type_fields() {
  return $this
    ->type_fields(TRUE);
}