You are here

function Notifications_Subscription::get_editable_fields in Notifications 6.4

Same name and namespace in other branches
  1. 7 notifications.subscription.inc \Notifications_Subscription::get_editable_fields()

Get editable fields. They're the ones in the subscription type that have no value

File

includes/notifications_subscription.class.inc, line 717
Drupal Notifications Framework - Default class file

Class

Notifications_Subscription
Message destination class

Code

function get_editable_fields() {
  return $this
    ->filter_fields($this
    ->get_type_fields(), FALSE);
}