You are here

protected function Node::pageDisplayOptions in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/views/wizard/Node.php \Drupal\node\Plugin\views\wizard\Node::pageDisplayOptions()
  2. 9 core/modules/node/src/Plugin/views/wizard/Node.php \Drupal\node\Plugin\views\wizard\Node::pageDisplayOptions()

Retrieves the page display options.

Parameters

array $form: The full wizard form array.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the wizard form.

Return value

array Returns an array of display options.

Overrides WizardPluginBase::pageDisplayOptions

File

core/modules/node/src/Plugin/views/wizard/Node.php, line 193

Class

Node
Tests creating node views with the wizard.

Namespace

Drupal\node\Plugin\views\wizard

Code

protected function pageDisplayOptions(array $form, FormStateInterface $form_state) {
  $display_options = parent::pageDisplayOptions($form, $form_state);
  $row_plugin = $form_state
    ->getValue([
    'page',
    'style',
    'row_plugin',
  ]);
  $row_options = $form_state
    ->getValue([
    'page',
    'style',
    'row_options',
  ], []);
  $this
    ->display_options_row($display_options, $row_plugin, $row_options);
  return $display_options;
}