You are here

function views_handler_field_node_link_clone::options_form in Node clone 6

File

views/views_handler_field_node_link_clone.inc, line 38
Views field handler for Node_Clone module.

Class

views_handler_field_node_link_clone
Field handler to present a clone node link.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['destination'] = array(
    '#type' => 'checkbox',
    '#title' => t('Add destination query string to return to the View'),
    '#default_value' => $this->options['destination'],
  );
}