2009-12-09 Raul Mateos <raulofpandora@gmail.com>
* godmode/reporting/map_builder.php: Changed H1 to H3, to maintain coherence. * operation/visual_console/render_view.php: Added title. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2187 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
3383036f83
commit
5b038b6276
|
@ -1,3 +1,9 @@
|
|||
2009-12-09 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* godmode/reporting/map_builder.php: Changed H1 to H3, to maintain coherence.
|
||||
|
||||
* operation/visual_console/render_view.php: Added title.
|
||||
|
||||
2009-12-09 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* godmode/reporting/reporting_builder.php: Print table of items only
|
||||
|
|
|
@ -387,7 +387,7 @@ if (! $edit_layout && ! $id_layout) {
|
|||
|
||||
if ($id_layout) {
|
||||
/* Show visual map preview */
|
||||
echo '<h1>'.__('preview').'</h1>';
|
||||
echo '<h3>'.__('preview').'</h3>';
|
||||
print_pandora_visual_map ($id_layout, false, true);
|
||||
|
||||
$images_list = array ();
|
||||
|
@ -407,7 +407,7 @@ if (! $edit_layout && ! $id_layout) {
|
|||
/* Layout data trash */
|
||||
echo '<form id="form_layout_data_trash" action="" method="post">';
|
||||
echo '<div id="layout_trash_drop">';
|
||||
echo '<h1>'.__('Map element trash').'</h1>';
|
||||
echo '<h3>'.__('Map element trash').'</h3>';
|
||||
// DISABLE UNTIL FIX THE BUG WITH ELEMENTS WITH BIG DIMENSIONS
|
||||
// echo __('Drag an element here to delete from the map');
|
||||
echo '<span id="elements"> </span>';
|
||||
|
@ -463,7 +463,7 @@ if (! $edit_layout && ! $id_layout) {
|
|||
$agents = get_group_agents ($id_group);
|
||||
|
||||
echo '<div id="layout_editor_drop">';
|
||||
echo '<h1>'.__('Map element editor').'</h1>';
|
||||
echo '<h3>'.__('Map element editor').'</h3>';
|
||||
echo __('Drag an element here to edit the properties');
|
||||
|
||||
$table->data = array ();
|
||||
|
|
|
@ -52,7 +52,8 @@ if (! give_acl ($config["id_user"], $id_group, "AR")) {
|
|||
}
|
||||
|
||||
// Render map
|
||||
echo "<h1>".$layout_name." ";
|
||||
echo "<h2>".__('Visual console')." » ".__('Map');
|
||||
echo " ".$layout_name." ";
|
||||
|
||||
if ($config["pure"] == 0) {
|
||||
echo '<a href="index.php?sec=visualc&sec2=operation/visual_console/render_view&id='.$id_layout.'&refr='.$config["refr"].'&pure=1">';
|
||||
|
@ -67,7 +68,7 @@ if ($config["pure"] == 0) {
|
|||
if (give_acl ($config["id_user"], $id_group, "AW"))
|
||||
echo '<a href="index.php?sec=greporting&sec2=godmode/reporting/map_builder&id_layout='.$id_layout.'">'.print_image ("images/setup.png", true, array ("title" => __('Setup'))).'</a>';
|
||||
|
||||
echo '</h1>';
|
||||
echo '</h2>';
|
||||
|
||||
print_pandora_visual_map ($id_layout);
|
||||
|
||||
|
|
Loading…
Reference in New Issue