protected function Node::default_display_options

Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::default_display_options().

Overrides WizardPluginBase::default_display_options

File

drupal/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php, line 136
Definition of Drupal\node\Plugin\views\wizard\Node.

Class

Node
Tests creating node views with the wizard.

Namespace

Drupal\node\Plugin\views\wizard

Code

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

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

  // 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';
  $display_options['fields']['title']['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']['link_to_node'] = 1;
  return $display_options;
}