You are here

function activity_comments_handler_field_comments::render in Activity 7

Same name and namespace in other branches
  1. 6.2 activity_comments/views/activity_comments_handler_field_comments.inc \activity_comments_handler_field_comments::render()

Render the field.

Parameters

array $values: The values retrieved from the database.

Overrides views_handler_field::render

File

activity_comments/views/activity_comments.views.inc, line 90

Class

activity_comments_handler_field_comments
Activity comments comment form field handler.

Code

function render($values) {
  return render(drupal_get_form('activity_comments_form', $values->{$this->aliases['aid']}, $this->options['limit'], $this->options['order']));
}