You are here

function Notifications_Subscription::field_edit_element in Notifications 7

Get element to edit field. Subscription can override the field element.

2 calls to Notifications_Subscription::field_edit_element()
Notifications_Subscription::fields_edit_elements in ./notifications.subscription.inc
Get elements to edit fields. Subscription can override the fieldset
Notifications_Subscription::field_element in ./notifications.subscription.inc
Display a form field for a notifications_field

File

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

Class

Notifications_Subscription
Common base for subscription type and subscription instance

Code

function field_edit_element($field, $element = array()) {
  return $field
    ->form_edit_element($field);
}