You are here

function views_handler_field_block_link_edit::options_form in Views Hacks 6

Same name and namespace in other branches
  1. 7 views_block/handlers/views_handler_field_block_link_edit.inc \views_handler_field_block_link_edit::options_form()

File

views_block/handlers/views_handler_field_block_link_edit.inc, line 16

Class

views_handler_field_block_link_edit

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