function Node::blockDisplayOptions
Same name in other branches
- 9 core/modules/node/src/Plugin/views/wizard/Node.php \Drupal\node\Plugin\views\wizard\Node::blockDisplayOptions()
- 8.9.x core/modules/node/src/Plugin/views/wizard/Node.php \Drupal\node\Plugin\views\wizard\Node::blockDisplayOptions()
- 10 core/modules/node/src/Plugin/views/wizard/Node.php \Drupal\node\Plugin\views\wizard\Node::blockDisplayOptions()
Overrides WizardPluginBase::blockDisplayOptions
File
-
core/
modules/ node/ src/ Plugin/ views/ wizard/ Node.php, line 205
Class
- Node
- Tests creating node views with the wizard.
Namespace
Drupal\node\Plugin\views\wizardCode
protected function blockDisplayOptions(array $form, FormStateInterface $form_state) {
$display_options = parent::blockDisplayOptions($form, $form_state);
$row_plugin = $form_state->getValue([
'block',
'style',
'row_plugin',
]);
$row_options = $form_state->getValue([
'block',
'style',
'row_options',
], []);
$this->display_options_row($display_options, $row_plugin, $row_options);
return $display_options;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.