You are here

function crumbs_UI_Table::getDrupalRows in Crumbs, the Breadcrumbs suite 7.2

Get an array that is compatible with Drupal's theme('table').

Return value

array[] Format: $[]['data'][]['data'] = $cellHtml $[]['data'][]['header'] = true|false $[]['data'][][$cellAttributeName] = $cellAttributeValue $[][$rowAttributeName] = $rowAttributeValue

File

lib/UI/Table.php, line 169

Class

crumbs_UI_Table
A class to render HTML tables.

Code

function getDrupalRows() {
  return $this->tbody
    ->getDrupalRows();
}