? views-summary-attribute-843708-1.patch Index: plugins/views_plugin_style_table.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/plugins/views_plugin_style_table.inc,v retrieving revision 1.7.2.3 diff -u -p -r1.7.2.3 views_plugin_style_table.inc --- plugins/views_plugin_style_table.inc 11 Mar 2010 00:06:18 -0000 1.7.2.3 +++ plugins/views_plugin_style_table.inc 2 Jul 2010 14:39:39 -0000 @@ -20,6 +20,7 @@ class views_plugin_style_table extends v $options['override'] = array('default' => TRUE); $options['sticky'] = array('default' => FALSE); $options['order'] = array('default' => 'asc'); + $options['summary'] = array('default' => ''); return $options; } @@ -243,5 +244,13 @@ class views_plugin_style_table extends v '#suffix' => '', '#value' => t('Place fields into columns; you may combine multiple fields into the same column. If you do, the separator in the column specified will be used to separate the fields. Check the sortable box to make that column click sortable, and check the default sort radio to determine which column will be sorted by default, if any. You may control column order and field labels in the fields section.'), ); + + $form['summary'] = array( + '#title' => 'Summary attribute in the html table for accessibility', + '#type' => 'textarea', + '#default_value' => isset($this->options['summary']) ? $this->options['summary'] : '', + '' + ); + } } Index: theme/views-view-table.tpl.php =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/views/theme/views-view-table.tpl.php,v retrieving revision 1.8 diff -u -p -r1.8 views-view-table.tpl.php --- theme/views-view-table.tpl.php 28 Jan 2009 00:43:43 -0000 1.8 +++ theme/views-view-table.tpl.php 2 Jul 2010 14:39:39 -0000 @@ -15,7 +15,7 @@ * @ingroup views_templates */ ?> -