public function Notifications_Subscription::field_element in Notifications 6.4
Same name and namespace in other branches
- 7 notifications.subscription.inc \Notifications_Subscription::field_element()
Display a form field for a notifications_field
1 call to Notifications_Subscription::field_element()
- Notifications_Subscription::fields_subform in includes/
notifications_subscription.class.inc - Produce fieldset to edit field values
File
- includes/
notifications_subscription.class.inc, line 949 - Drupal Notifications Framework - Default class file
Class
- Notifications_Subscription
- Message destination class
Code
public function field_element($type, $value = NULL, $title = FALSE, $required = FALSE) {
notifications_include('object.inc');
return notifications_field_form_element($type, $value, $this, $title, $required);
}