You are here

function activity_comments_handler_field_comments::option_definition in Activity 6.2

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

File

activity_comments/views/activity_comments_handler_field_comments.inc, line 20

Class

activity_comments_handler_field_comments
Activity comments comment form field handler.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['order'] = array(
    'default' => 'ASC',
    'translatable' => FALSE,
  );
  $options['limit'] = array(
    'default' => '2',
    'translatable' => FALSE,
  );
  return $options;
}