You are here

function notifications_views_handler_argument_subscription_type::summary_name in Notifications 6.4

Same name and namespace in other branches
  1. 6 notifications_views/notifications_views_handler_argument_subscription_type.inc \notifications_views_handler_argument_subscription_type::summary_name()
  2. 6.2 notifications_views/notifications_views_handler_argument_subscription_type.inc \notifications_views_handler_argument_subscription_type::summary_name()
  3. 6.3 notifications_views/notifications_views_handler_argument_subscription_type.inc \notifications_views_handler_argument_subscription_type::summary_name()
  4. 7 notifications_views/includes/notifications_views_handler_argument_subscription_type.inc \notifications_views_handler_argument_subscription_type::summary_name()

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

File

notifications_views/notifications_views_handler_argument_subscription_type.inc, line 14

Class

notifications_views_handler_argument_subscription_type
Argument handler to accept a subscription type.

Code

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