You are here

protected function ViewsJsonArgument::defineOptions in Views Json Source 8

Same name and namespace in other branches
  1. 1.x src/Plugin/views/argument/ViewsJsonArgument.php \Drupal\views_json_source\Plugin\views\argument\ViewsJsonArgument::defineOptions()

Information about options for all kinds of purposes will be held here.


'option_name' => array(
 - 'default' => default value,
 - 'contains' => (optional) array of items this contains, with its own
     defaults, etc. If contains is set, the default will be ignored and
     assumed to be array().
 ),

Return value

array Returns the options of this handler/plugin.

Overrides ArgumentPluginBase::defineOptions

File

src/Plugin/views/argument/ViewsJsonArgument.php, line 38

Class

ViewsJsonArgument
Base argument handler for views_json_source.

Namespace

Drupal\views_json_source\Plugin\views\argument

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['key'] = [
    'default' => '',
  ];
  return $options;
}