You are here

function commerce_gc_handler_field_transaction_delete::options_form in Commerce GC 7

Provide the currency format option.

Overrides views_handler_field::options_form

File

includes/views/handlers/commerce_gc_handler_field_transaction_delete.inc, line 27
Provides a transaction delete link.

Class

commerce_gc_handler_field_transaction_delete
@file Provides a transaction delete link.

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