You are here

public function views_plugin_argument_default_bboxquery::option_definition in Views GeoJSON 7

Same name and namespace in other branches
  1. 6 views/views_plugin_argument_default_bboxquery.inc \views_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

views/views_plugin_argument_default_bboxquery.inc, line 42
Contains the BBOX query string argument default plugin.

Class

views_plugin_argument_default_bboxquery
The BBOX query string argument default handler.

Code

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