2010-04-23 Sergio Martin <sergio.martin@artica.es>
* operation/visual_console/index.php godmode/reporting/map_builder.php: Fixed the group all on tables git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2597 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
ef620a871e
commit
7ea708f64b
|
@ -1,3 +1,9 @@
|
|||
2010-04-23 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* operation/visual_console/index.php
|
||||
godmode/reporting/map_builder.php: Fixed the
|
||||
group all on tables
|
||||
|
||||
2010-04-23 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* godmode/alerts/alert_compounds.php
|
||||
|
|
|
@ -119,7 +119,7 @@ if (!$maps) {
|
|||
$data[0] = '<a href="index.php?sec=gmap&sec2=godmode/reporting/visual_console_builder&tab=data&action=edit&id_visual_console='.$map['id'].'">'.$map['name'].'</a>';
|
||||
|
||||
$data[1] = print_group_icon ($map['id_group'], true).' ';
|
||||
$data[1] .= get_group_name ($map['id_group']);
|
||||
$data[1] .= get_group_name ($map['id_group'], true);
|
||||
$data[2] = get_db_sql ("SELECT COUNT(*) FROM tlayout_data WHERE id_layout = ".$map['id']);
|
||||
|
||||
$data[3] = '<a href="index.php?sec=gmap&sec2=godmode/reporting/map_builder&id_layout='.$map['id'].'&copy_layout=1">'.print_image ("images/copy.png", true).'</a>';
|
||||
|
|
|
@ -52,7 +52,7 @@ foreach ($layouts as $layout) {
|
|||
$data[0] = '<a href="index.php?sec=visualc&sec2=operation/visual_console/render_view&id='.
|
||||
$layout['id'].'">'.$layout['name'].'</a> ';
|
||||
$data[1] = print_group_icon ($layout["id_group"], true);
|
||||
$data[1] .= " ".get_group_name ($layout["id_group"]);
|
||||
$data[1] .= " ".get_group_name ($layout["id_group"], true);
|
||||
$data[2] = get_db_value ('COUNT(*)', 'tlayout_data', 'id_layout', $layout['id']);
|
||||
|
||||
array_push ($table->data, $data);
|
||||
|
|
Loading…
Reference in New Issue