" . __("Zero results found") . "
\n";
}
else {
$table->cellpadding = 4;
$table->cellspacing = 4;
$table->width = "98%";
$table->class = "databox";
$table->head = array ();
$table->head[0] = __('Graph name');
$table->head[1] = __('Description');
$table->data = array ();
foreach ($graphs as $graph) {
array_push($table->data, array(
"" . $graph['name'] . "",
$graph['description']
));
}
echo "
";ui_pagination ($totalGraphs);
html_print_table ($table); unset($table);
ui_pagination ($totalGraphs);
}
?>