You are here

function getlocations_fields_plugin_argument_default_bboxquery::option_definition in Get Locations 7

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

Retrieve the options when this is a new access control plugin.

Overrides views_plugin_argument_default::option_definition

File

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

Class

getlocations_fields_plugin_argument_default_bboxquery
Argument handler to accept bbox

Code

function option_definition() {
  $options = parent::option_definition();
  $options['argument'] = array(
    'default' => '',
  );
  $options['arg_id'] = array(
    'default' => 'bbox',
  );
  return $options;
}