Skip to content
Snippets Groups Projects
Commit 58be1ccf authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1963368 by xjm: Move 'no results behavior' into the second column of the Views UI.

parent 27ac97ef
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -468,6 +468,7 @@ public function getDisplayDetails($view, $display) {
$build['columns']['second']['settings'] = array();
$build['columns']['second']['header'] = array();
$build['columns']['second']['footer'] = array();
$build['columns']['second']['empty'] = array();
$build['columns']['second']['pager'] = array();
// The third column buckets are wrapped in details.
......@@ -527,9 +528,9 @@ public function getDisplayDetails($view, $display) {
$build['columns']['first']['sorts'] = $this->getFormBucket($view, 'sort', $display);
$build['columns']['second']['header'] = $this->getFormBucket($view, 'header', $display);
$build['columns']['second']['footer'] = $this->getFormBucket($view, 'footer', $display);
$build['columns']['second']['empty'] = $this->getFormBucket($view, 'empty', $display);
$build['columns']['third']['arguments'] = $this->getFormBucket($view, 'argument', $display);
$build['columns']['third']['relationships'] = $this->getFormBucket($view, 'relationship', $display);
$build['columns']['third']['empty'] = $this->getFormBucket($view, 'empty', $display);
return $build;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment