Skip to content
Snippets Groups Projects
Commit 41f6e35e authored by Alex Pott's avatar Alex Pott
Browse files

Issue #864006 by mgifford, dawehner, AjitS: Improve table semantics by adding...

Issue #864006 by mgifford, dawehner, AjitS: Improve table semantics by adding scope or headers/id attributes.
parent 948fbd83
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
......@@ -511,6 +511,7 @@ function template_preprocess_views_view_table(&$variables) {
// Store rows so that they may be used by further preprocess functions.
$result = $variables['result'] = $variables['rows'];
$variables['rows'] = array();
// @todo Remove field_classes to field_attributes.
$variables['field_classes'] = array();
$variables['header'] = array();
......@@ -575,6 +576,7 @@ function template_preprocess_views_view_table(&$variables) {
}
// Set up the header label class.
// @todo Rename to header_attributes.
$variables['header_classes'][$field] = array();
if ($fields[$field]->options['element_default_classes']) {
$variables['header_classes'][$field]['class'][] = 'views-field';
......@@ -600,6 +602,8 @@ function template_preprocess_views_view_table(&$variables) {
if ($element_label_type) {
$variables['header'][$field] = '<' . $element_label_type . '>' . $variables['header'][$field] . '</' . $element_label_type . '>';
}
// Improves accessibility of complex tables.
$vars['header_classes'][$field]['id'] = drupal_html_id('view-' . $field . '-table-column');
}
}
......@@ -626,6 +630,11 @@ function template_preprocess_views_view_table(&$variables) {
$variables['field_classes'][$field][$num]['class'][] = $options['info'][$field]['responsive'];
}
// Improves accessibility of complex tables.
if (isset($vars['header_classes'][$field]['id'])) {
$vars['field_classes'][$field][$num]['headers'] = array($vars['header_classes'][$field]['id']);
}
if (!empty($fields[$field]) && empty($fields[$field]->options['exclude'])) {
$field_output = $handler->getField($num, $field);
$element_type = $fields[$field]->elementType(TRUE, TRUE);
......
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