Skip to content
Snippets Groups Projects
Commit 318e1d1e authored by Tim Plunkett's avatar Tim Plunkett
Browse files

Issue #1716908 by aspilicious, tim.plunkett: Use the new attributes system in D8.

parent ef66e002
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
...@@ -55,7 +55,7 @@ function options_form(&$form, &$form_state) { ...@@ -55,7 +55,7 @@ function options_form(&$form, &$form_state) {
function pre_render(&$values) { function pre_render(&$values) {
// Add a row plugin css class for the contextual link. // Add a row plugin css class for the contextual link.
$class = 'contextual-links-region'; $class = 'contextual-region';
if (!empty($this->view->style_plugin->options['row_class'])) { if (!empty($this->view->style_plugin->options['row_class'])) {
$this->view->style_plugin->options['row_class'] .= " $class"; $this->view->style_plugin->options['row_class'] .= " $class";
} }
...@@ -95,7 +95,7 @@ function render($values) { ...@@ -95,7 +95,7 @@ function render($values) {
if (!empty($links)) { if (!empty($links)) {
$build = array( $build = array(
'#prefix' => '<div class="contextual-links-wrapper">', '#prefix' => '<div class="contextual">',
'#suffix' => '</div>', '#suffix' => '</div>',
'#theme' => 'links__contextual', '#theme' => 'links__contextual',
'#links' => $links, '#links' => $links,
......
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