You are here

notifications_views_handler_field_body.inc in Notifications 6.4

File

notifications_views/notifications_views_handler_field_body.inc
View source
<?php

/**
 * Field handler
 */
class notifications_views_handler_field_body extends views_handler_field {
  function render($values) {
    $method_info = messaging_method_info('simple');
    $value = $values->{$this->field_alias};

    // The filter is applied now only once
    if ($method_info['filter']) {
      return check_markup($value, $filter, FALSE);
    }
    return check_plain($value);
  }

}

Classes

Namesort descending Description
notifications_views_handler_field_body Field handler