You are here

class notifications_views_handler_filter_subscription_send_method in Notifications 6.4

Same name and namespace in other branches
  1. 6 notifications_views/notifications_views_handler_filter_subscription_send_method.inc \notifications_views_handler_filter_subscription_send_method
  2. 6.2 notifications_views/notifications_views_handler_filter_subscription_send_method.inc \notifications_views_handler_filter_subscription_send_method
  3. 6.3 notifications_views/notifications_views_handler_filter_subscription_send_method.inc \notifications_views_handler_filter_subscription_send_method
  4. 7 notifications_views/includes/notifications_views_handler_filter_subscription_send_method.inc \notifications_views_handler_filter_subscription_send_method

Filter by node type

Hierarchy

Expanded class hierarchy of notifications_views_handler_filter_subscription_send_method

1 string reference to 'notifications_views_handler_filter_subscription_send_method'
notifications_views_views_data in notifications_views/notifications_views.module
Implementation of hook_views_data().

File

notifications_views/notifications_views_handler_filter_subscription_send_method.inc, line 5

View source
class notifications_views_handler_filter_subscription_send_method extends views_handler_filter_in_operator {
  function get_value_options() {
    if (!isset($this->value_options)) {
      $this->value_title = t('Send method');
      $options = messaging_method_list();
      $this->value_options = $options;
    }
  }

}

Members