Experimental project

This is a sandbox project, which contains experimental code for developer use only.

Allows using theme_table to create tables where the header is down the left hand
side of the table as opposed to along the top.

Example

$header = array('Apples', 'Peaches', 'Pears', 'Bananas');
$columns[] = array('Lorem', 'ipsum', 'dolor', 'sit');
$columns[] = array('amet', 'consectetur', 'adipiscing', 'elit');
$variables = array(
  'vertical' => TRUE,
  'header' => $header,
  'columns' => $columns,
  'empty' => 'No data found',
);
$table = theme('table', $variables);

Project information