You are here

public function views_handler_field_comment_link::options_form in Views (for Drupal 7) 7.3

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

Default options form provides the label widget that all fields should have.

Overrides views_handler_field::options_form

1 call to views_handler_field_comment_link::options_form()
views_handler_field_comment_link_edit::options_form in modules/comment/views_handler_field_comment_link_edit.inc
Default options form provides the label widget that all fields should have.
1 method overrides views_handler_field_comment_link::options_form()
views_handler_field_comment_link_edit::options_form in modules/comment/views_handler_field_comment_link_edit.inc
Default options form provides the label widget that all fields should have.

File

modules/comment/views_handler_field_comment_link.inc, line 28
Definition of views_handler_field_comment_link.

Class

views_handler_field_comment_link
Base field handler to present a link.

Code

public function options_form(&$form, &$form_state) {
  $form['text'] = array(
    '#type' => 'textfield',
    '#title' => t('Text to display'),
    '#default_value' => $this->options['text'],
  );
  $form['link_to_node'] = array(
    '#title' => t('Link field to the node if there is no comment.'),
    '#type' => 'checkbox',
    '#default_value' => $this->options['link_to_node'],
  );
  parent::options_form($form, $form_state);
}