You are here

class notifications_views_handler_field_subscription_interval in Notifications 6

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

Field handler to translate a node type into its readable form.

Hierarchy

Expanded class hierarchy of notifications_views_handler_field_subscription_interval

File

notifications_views/notifications_views_handler_field_subscription_interval.inc, line 6

View source
class notifications_views_handler_field_subscription_interval extends views_handler_field {
  function render($values) {
    $types = _notifications_send_intervals();
    $value = $types[$values->{$this->field_alias}];
    return check_plain($value);
  }

}

Members