You are here

private function crumbs_Admin_DebugTable::addDefaultRow in Crumbs, the Breadcrumbs suite 7.2

Parameters

bool $odd:

1 call to crumbs_Admin_DebugTable::addDefaultRow()
crumbs_Admin_DebugTable::addPluginResults in lib/Admin/DebugTable.php

File

lib/Admin/DebugTable.php, line 197

Class

crumbs_Admin_DebugTable

Code

private function addDefaultRow(&$odd) {
  $this->table
    ->addRowName('default')
    ->addRowClass('default', $odd ? 'odd' : 'even')
    ->td('default', 'candidate.key', '(default)')
    ->td('default', 'candidate.weight', '-');
  $odd = !$odd;
}