New maps in progress... (generation y visualization mode)
This commit is contained in:
parent
f0afd427bb
commit
edd6a99ebb
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue