You are here

function Notifications_Subscription::get_editable_fields in Notifications 7

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

Get editable fields, the ones that are not set for type

4 calls to Notifications_Subscription::get_editable_fields()
Notifications_Subscription::build_fields_from_submission in ./notifications.subscription.inc
Build submitted fields (match them with this subscription type fields)
Notifications_Subscription::element_fields in ./notifications.subscription.inc
Get all fields (editable and not editable)
Notifications_Subscription::form_edit in ./notifications.subscription.inc
Get edit form for this subscription
Notifications_Subscription::set_fields_from_values in ./notifications.subscription.inc
Build instance fields form URL parameters

File

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

Class

Notifications_Subscription
Common base for subscription type and subscription instance

Code

function get_editable_fields() {
  return $this
    ->get_instance_fields();
}