You are here

function notifications_views_handler_field_subscription_interval::render in Notifications 6.4

Same name and namespace in other branches
  1. 6 notifications_views/notifications_views_handler_field_subscription_interval.inc \notifications_views_handler_field_subscription_interval::render()
  2. 6.2 notifications_views/notifications_views_handler_field_subscription_interval.inc \notifications_views_handler_field_subscription_interval::render()
  3. 6.3 notifications_views/notifications_views_handler_field_subscription_interval.inc \notifications_views_handler_field_subscription_interval::render()

File

notifications_views/notifications_views_handler_field_subscription_interval.inc, line 7

Class

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

Code

function render($values) {
  $types = notifications_send_intervals();
  $value = $types[$values->{$this->field_alias}];
  return check_plain($value);
}