messaging_simple_handler_field_body.inc in Messaging 6.4
Same filename and directory in other branches
File
messaging_simple/views/messaging_simple_handler_field_body.incView source
<?php
/**
* Field handler
*/
class messaging_simple_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
Name | Description |
---|---|
messaging_simple_handler_field_body | Field handler |