New maps in progress... (generation y visualization mode)

This commit is contained in:
Arturo Gonzalez 2016-02-04 09:22:13 +01:00
parent f0afd427bb
commit edd6a99ebb
2 changed files with 28 additions and 5 deletions

View File

@ -93,20 +93,35 @@ function maps_update_map ($id, $values) {
function maps_is_networkmap($id) {
$return = db_get_value('type', 'tmap', 'id', $id);
if ($return === false)
return false;
if ($return == MAP_TYPE_NETWORKMAP)
return true;
else
return false;
}
function maps_is_visualmap($id) {
$return = db_get_value('type', 'tmap', 'id', $id);
if ($return === false) {
return false;
}
if ($return == MAP_TYPE_VISUALMAP) {
return true;
}
else {
return false;
}
}
function maps_show($id) {
if (maps_is_networkmap($id)) {
require_once("include/functions_networkmaps.php");
networkmaps_show($id);
}
else {

View File

@ -22,6 +22,14 @@
*/
function networkmaps_show($id) {
}
$networkmap_items = db_get_all_rows_sql("SELECT * FROM titem WHERE id_map = " . $id);
$networkmap = db_get_all_rows_sql("SELECT * FROM tmap WHERE id = " . $id);
if ($networkmap === false) {
ui_print_error_message(__('Not found networkmap'));
}
else {
}
}
?>