You are here

function party_handler_field_delete_link::options_form in Party 8.2

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

File

includes/views/party_handler_field_delete_link.inc, line 24
Contains a Views field handler to take care of displaying deletes links as fields

Class

party_handler_field_delete_link
@file Contains a Views field handler to take care of displaying deletes links 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'],
  );
}