2014-01-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/networkmap.php: fixed the save the font size in the networkmaps. Fixes: #2408 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9291 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
5695199662
commit
ca068e7497
|
@ -1,3 +1,10 @@
|
||||||
|
2014-01-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
|
* operation/agentes/networkmap.php: fixed the save the font size in
|
||||||
|
the networkmaps.
|
||||||
|
|
||||||
|
Fixes: #2408
|
||||||
|
|
||||||
2013-12-27 Hirofumi Kosaka <kosaka@rworks.jp>
|
2013-12-27 Hirofumi Kosaka <kosaka@rworks.jp>
|
||||||
|
|
||||||
* include/functions_api.php: Added 'plugin_macros' and
|
* include/functions_api.php: Added 'plugin_macros' and
|
||||||
|
|
|
@ -234,14 +234,30 @@ if (check_acl ($config['id_user'], 0, "AW")) {
|
||||||
html_print_image("images/delete_mc.png", true, array ("title" => __('Delete map'))) .'</a>');
|
html_print_image("images/delete_mc.png", true, array ("title" => __('Delete map'))) .'</a>');
|
||||||
|
|
||||||
$buttons['savemap'] = array('active' => $activeTab == false,
|
$buttons['savemap'] = array('active' => $activeTab == false,
|
||||||
'text' => '<a href="index.php?sec=network&sec2=operation/agentes/networkmap&id_networkmap='.$id_networkmap.'&save_networkmap=1
|
'text' => '<a href="index.php?sec=network&' .
|
||||||
&tab='.$activeTab.'&save_networkmap=1&name='.$name.'&group='.$group.'
|
'sec2=operation/agentes/networkmap&' .
|
||||||
&layout='.$layout.'&nooverlap='.$nooverlap.'&simple='.$simple.'&regen='.$regen.'
|
'id_networkmap=' . $id_networkmap . '&' .
|
||||||
&zoom='.$zoom.'&ranksep='.$ranksep.'&fontsize='.$font_size.'&depth='.$depth.'
|
'save_networkmap=1&' .
|
||||||
&modwithalerts='.$modwithalerts.'&text_filter='.$text_filter.
|
'tab=' . $activeTab . '&' .
|
||||||
'&dont_show_subgroups='.$dont_show_subgroups.'&hidepolicymodules='.$hidepolicymodules.'
|
'save_networkmap=1&' .
|
||||||
&module_group='.$module_group.'&pure='.$pure.'&hidden_options='.(int)$hidden_options.'
|
'name=' . $name . '&' .
|
||||||
&show_snmp_modules='.(int)$show_snmp_modules.'">' .
|
'group=' . $group . '&' .
|
||||||
|
'layout=' . $layout . '&' .
|
||||||
|
'nooverlap=' . $nooverlap . '&' .
|
||||||
|
'simple=' . $simple . '&' .
|
||||||
|
'regen=' . $regen . '&' .
|
||||||
|
'zoom=' . $zoom . '&' .
|
||||||
|
'ranksep=' . $ranksep . '&' .
|
||||||
|
'font_size=' . $font_size . '&' .
|
||||||
|
'depth=' . $depth . '&' .
|
||||||
|
'modwithalerts=' . $modwithalerts . '&' .
|
||||||
|
'text_filter=' . $text_filter . '&' .
|
||||||
|
'dont_show_subgroups=' . $dont_show_subgroups . '&' .
|
||||||
|
'hidepolicymodules=' . $hidepolicymodules . '&' .
|
||||||
|
'module_group=' . $module_group . '&' .
|
||||||
|
'pure=' . $pure . '&' .
|
||||||
|
'hidden_options=' . (int)$hidden_options . '&' .
|
||||||
|
'show_snmp_modules=' . (int)$show_snmp_modules . '">' .
|
||||||
html_print_image("images/save_mc.png", true, array ("title" => __('Save map'))) .'</a>');
|
html_print_image("images/save_mc.png", true, array ("title" => __('Save map'))) .'</a>');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue