function views_handler_field_contextual_links::options_form
Overrides views_handler_field_links::options_form
File
-
handlers/
views_handler_field_contextual_links.inc, line 32
Class
- views_handler_field_contextual_links
- Provides a handler that adds contextual links.
Code
public function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['fields']['#description'] = t('Fields to be included as contextual links.');
$form['destination']['#description'] = t('Include a "destination" parameter in the link to return the user to the original view upon completing the contextual action.');
}