You are here

function activity_handler_field_activity_link::options_form in Activity 6.2

File

views/activity_handler_field_activity_link.inc, line 19

Class

activity_handler_field_activity_link
Field handler to present a link to the activity.

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