You are here

function notifications_views_handler_argument_subscription_send_method::summary_name in Notifications 7

Override the behavior of summary_name(). Get the user friendly version of the node type.

Overrides views_handler_argument::summary_name

File

notifications_views/includes/notifications_views_handler_argument_subscription_send_method.inc, line 14

Class

notifications_views_handler_argument_subscription_send_method
Argument handler to accept a subscription send method.

Code

function summary_name($data) {
  return $this
    ->notifications_subscription_send_method($data->{$this->name_alias});
}