Skip to content

Instantly share code, notes, and snippets.

@apperceive
Created November 19, 2015 16:40
Show Gist options
  • Save apperceive/01502800b222a2804cc0 to your computer and use it in GitHub Desktop.
Save apperceive/01502800b222a2804cc0 to your computer and use it in GitHub Desktop.
add Twitter bootstrap Table Class to Drupal 7 theme table
<?php
function THEMENAME_preprocess_table(&$variables) {
if(!isset($variables['attributes']['class'])) {
$variables['attributes']['class'] = array('table', 'table-striped');
}
else {
$variables['attributes']['class'][] = 'table';
$variables['attributes']['class'][] = 'table-striped';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment