You are here

function casetracker_project_handler_link_cases_field::options_form in Case Tracker 7.2

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

Overrides views_handler_field::options_form

File

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

Class

casetracker_project_handler_link_cases_field

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'],
  );
}