mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
2011-04-19 Javier Lanz <javier.lanz@artica.es>
* godmode/modules/manage_network_components_form.php: Enabled port field on Network Components - Remote SNMP network agent * godmode/modules/manage_network_components_form_plugin.php: Added port field on Network Components - Plugin Components git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4251 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e61f068139
commit
34fbb5c40a
@ -1,3 +1,10 @@
|
|||||||
|
2011-04-19 Javier Lanz <javier.lanz@artica.es>
|
||||||
|
|
||||||
|
* godmode/modules/manage_network_components_form.php: Enabled port field
|
||||||
|
on Network Components - Remote SNMP network agent
|
||||||
|
* godmode/modules/manage_network_components_form_plugin.php: Added port
|
||||||
|
field on Network Components - Plugin Components
|
||||||
|
|
||||||
2011-04-19 Miguel de Dios <miguel.dedios@artica.es>
|
2011-04-19 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* godmode/setup/setup_visuals.php: change the text field fonts to
|
* godmode/setup/setup_visuals.php: change the text field fonts to
|
||||||
|
@ -200,8 +200,8 @@ function type_change () {
|
|||||||
document.component.tcp_send.disabled=true;
|
document.component.tcp_send.disabled=true;
|
||||||
document.component.tcp_rcv.style.background="#ddd";
|
document.component.tcp_rcv.style.background="#ddd";
|
||||||
document.component.tcp_rcv.disabled=true;
|
document.component.tcp_rcv.disabled=true;
|
||||||
document.component.tcp_port.style.background="#ddd";
|
document.component.tcp_port.style.background="#fff";
|
||||||
document.component.tcp_port.disabled=true;
|
document.component.tcp_port.disabled=false;
|
||||||
|
|
||||||
document.component.snmp_version.style.background="#fff";
|
document.component.snmp_version.style.background="#fff";
|
||||||
document.component.snmp_version.disabled=false;
|
document.component.snmp_version.disabled=false;
|
||||||
|
@ -20,6 +20,13 @@ check_login ();
|
|||||||
|
|
||||||
echo "<h3>".__('Plugin component').'</h3>';
|
echo "<h3>".__('Plugin component').'</h3>';
|
||||||
|
|
||||||
|
$data = array ();
|
||||||
|
$data[0] = __('Port');
|
||||||
|
$data[1] = print_input_text ('tcp_port', $tcp_port, '', 5, 20, true);
|
||||||
|
$table->colspan['plugin_0'][1] = 3;
|
||||||
|
|
||||||
|
push_table_row ($data, 'plugin_0');
|
||||||
|
|
||||||
$data = array ();
|
$data = array ();
|
||||||
$data[0] = __('Plugin');
|
$data[0] = __('Plugin');
|
||||||
$data[1] = print_select_from_sql ('SELECT id, name FROM tplugin ORDER BY name',
|
$data[1] = print_select_from_sql ('SELECT id, name FROM tplugin ORDER BY name',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user