function views_handler_field_comment_link::option_definition

Same name in other branches
  1. 7.x-3.x modules/comment/views_handler_field_comment_link.inc \views_handler_field_comment_link::option_definition()

Overrides views_handler_field::option_definition

1 call to views_handler_field_comment_link::option_definition()
views_handler_field_comment_link_edit::option_definition in modules/comment/views_handler_field_comment_link_edit.inc
Information about options for all kinds of purposes will be held here.
1 method overrides views_handler_field_comment_link::option_definition()
views_handler_field_comment_link_edit::option_definition in modules/comment/views_handler_field_comment_link_edit.inc
Information about options for all kinds of purposes will be held here.

File

modules/comment/views_handler_field_comment_link.inc, line 14

Class

views_handler_field_comment_link
Base field handler to present a link.

Code

function option_definition() {
    $options = parent::option_definition();
    $options['text'] = array(
        'default' => '',
        'translatable' => TRUE,
    );
    return $options;
}