You are here

public function views_handler_field_node_comment::render in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 modules/comment/views_handler_field_node_comment.inc \views_handler_field_node_comment::render()
  2. 6.2 modules/comment/views_handler_field_node_comment.inc \views_handler_field_node_comment::render()

Render the field.

Parameters

array $values: The values retrieved from the database.

Overrides views_handler_field::render

File

modules/comment/views_handler_field_node_comment.inc, line 18
Definition of views_handler_field_node_comment.

Class

views_handler_field_node_comment
Display node comment status.

Code

public function render($values) {
  $value = $this
    ->get_value($values);
  switch ($value) {
    case COMMENT_NODE_HIDDEN:
    default:
      return t('Hidden');
    case COMMENT_NODE_CLOSED:
      return t('Closed');
    case COMMENT_NODE_OPEN:
      return t('Open');
  }
}