You are here

public function bat_booking_handler_delete_link_field::options_form in Booking and Availability Management Tools for Drupal 7

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

Overrides views_handler_field::options_form

File

modules/bat_booking/views/bat_booking_handler_delete_link_field.inc, line 37
Contains a Views field handler to take care of displaying deletes links as fields.

Class

bat_booking_handler_delete_link_field

Code

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