You are here

function getlocations_fields_handler_argument_bbox::default_argument_form in Get Locations 7

Same name and namespace in other branches
  1. 7.2 modules/getlocations_fields/handlers/getlocations_fields_handler_argument_bbox.inc \getlocations_fields_handler_argument_bbox::default_argument_form()

Provide a form for selecting the default argument.

Used when the default action is set to provide default argument.

Overrides views_handler_argument::default_argument_form

File

modules/getlocations_fields/handlers/getlocations_fields_handler_argument_bbox.inc, line 27
getlocations_fields_handler_argument_bbox.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Class

getlocations_fields_handler_argument_bbox
Argument handler to accept bbox

Code

function default_argument_form(&$form, &$form_state) {
  parent::default_argument_form($form, $form_state);

  // Clarify this, since we're treating pulling from the query string as
  // different than a normal arg.
  $form['no_argument']['#title'] = 'When the filter value is NOT in the URL <em>as a normal Drupal argument</em>';
}