You are here

function shurly_handler_field_shurly_link_test::options_form in ShURLy 6

File

views/shurly_handler_field_shurly_link_test.inc, line 23
Shurly Views handler for test link

Class

shurly_handler_field_shurly_link_test
Field handler to present a link to the short URL entry.

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