function Watchdog::defaultDisplayOptions
Assembles the default display options for the view.
Most wizards will need to override this method to provide some fields or a different row plugin.
Return value
array Returns an array of display options.
Overrides WizardPluginBase::defaultDisplayOptions
File
- 
              core/modules/ dblog/ src/ Plugin/ views/ wizard/ Watchdog.php, line 29 
Class
- Watchdog
- Defines a wizard for the watchdog table.
Namespace
Drupal\dblog\Plugin\views\wizardCode
protected function defaultDisplayOptions() {
  $display_options = parent::defaultDisplayOptions();
  // Add permission-based access control.
  $display_options['access']['type'] = 'perm';
  $display_options['access']['options']['perm'] = 'access site reports';
  return $display_options;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
