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