You are here

protected function Node::defaultDisplayOptions in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/views/wizard/Node.php \Drupal\node\Plugin\views\wizard\Node::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/node/src/Plugin/views/wizard/Node.php, line 124

Class

Node
Tests creating node views with the wizard.

Namespace

Drupal\node\Plugin\views\wizard

Code

protected function defaultDisplayOptions() {
  $display_options = parent::defaultDisplayOptions();

  // Add permission-based access control.
  $display_options['access']['type'] = 'perm';
  $display_options['access']['options']['perm'] = 'access content';

  // Remove the default fields, since we are customizing them here.
  unset($display_options['fields']);

  // Add the title field, so that the display has content if the user switches
  // to a row style that uses fields.

  /* Field: Content: Title */
  $display_options['fields']['title']['id'] = 'title';
  $display_options['fields']['title']['table'] = 'node_field_data';
  $display_options['fields']['title']['field'] = 'title';
  $display_options['fields']['title']['entity_type'] = 'node';
  $display_options['fields']['title']['entity_field'] = 'title';
  $display_options['fields']['title']['label'] = '';
  $display_options['fields']['title']['alter']['alter_text'] = 0;
  $display_options['fields']['title']['alter']['make_link'] = 0;
  $display_options['fields']['title']['alter']['absolute'] = 0;
  $display_options['fields']['title']['alter']['trim'] = 0;
  $display_options['fields']['title']['alter']['word_boundary'] = 0;
  $display_options['fields']['title']['alter']['ellipsis'] = 0;
  $display_options['fields']['title']['alter']['strip_tags'] = 0;
  $display_options['fields']['title']['alter']['html'] = 0;
  $display_options['fields']['title']['hide_empty'] = 0;
  $display_options['fields']['title']['empty_zero'] = 0;
  $display_options['fields']['title']['settings']['link_to_entity'] = 1;
  $display_options['fields']['title']['plugin_id'] = 'field';
  return $display_options;
}