".__('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] = __('Name'); $table->head[1] = __('Group'); $table->head[2] = __('Elements'); $table->align = []; $table->align[1] = 'center'; $table->align[2] = 'center'; $table->headstyle = []; $table->headstyle[0] = 'text-align: left'; $table->headstyle[1] = 'text-align: center'; $table->headstyle[1] = 'text-align: center'; $table->data = []; foreach ($maps as $map) { array_push( $table->data, [ "".$map['name'].'', ui_print_group_icon($map['id_group'], true), $map['count'], ] ); } echo '
'; ui_pagination($totalMaps); html_print_table($table); unset($table); ui_pagination($totalMaps); }