You are here

function entityform_handler_link_field::options_form in Entityform 7.2

Same name and namespace in other branches
  1. 7 views/entityform_handler_link_field.inc \entityform_handler_link_field::options_form()

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

Overrides views_handler_field::options_form

File

views/entityform_handler_link_field.inc, line 28
Contains a Views field handler to take care of displaying links to entities as fields.

Class

entityform_handler_link_field
@file Contains a Views field handler to take care of displaying links to entities as fields.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['text'] = array(
    '#type' => 'textfield',
    '#title' => t('Text to display'),
    '#default_value' => $this->options['text'],
  );
}