2011-01-31 Miguel de Dios <miguel.dedios@artica.es>

* godmode/modules/manage_network_components_form_wmi.php,
	godmode/modules/manage_network_components_form_plugin.php: added the field
	"Post process".



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3789 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-01-31 13:25:33 +00:00
parent e6e1f0c071
commit dd14469349
3 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2011-01-31 Miguel de Dios <miguel.dedios@artica.es>
* godmode/modules/manage_network_components_form_wmi.php,
godmode/modules/manage_network_components_form_plugin.php: added the field
"Post process".
2011-01-31 Miguel de Dios <miguel.dedios@artica.es>
* include/javascript/pandora_modules.js, pandoradb.sql,

View File

@ -40,7 +40,8 @@ $data = array ();
$data[0] = __('Plugin parameters');
$data[0] .= print_help_icon ('plugin_parameters', true);
$data[1] = print_input_text ('plugin_parameter', $plugin_parameter, '', 30, 255, true);
$table->colspan['plugin_3'][1] = 3;
$data[2] = __('Post process').' '.print_help_icon ('postprocess', true);
$data[3] = print_input_text ('post_process', $post_process, '', 12, 25, true);
push_table_row ($data, 'plugin_3');

View File

@ -52,6 +52,12 @@ $data[3] = print_input_password ('plugin_pass', $plugin_pass, '', 25, 255, true)
push_table_row ($data, 'wmi_3');
$data = array();
$data[0] = __('Post process').' '.print_help_icon ('postprocess', true);
$data[1] = print_input_text ('post_process', $post_process, '', 12, 25, true);
$data[2] = $data[3] = '';
push_table_row($data, 'field_process');
return;
// Update an existing component
if (! $id) {
@ -194,7 +200,8 @@ if ($id) {
print_input_hidden ('update_component', 1);
print_input_hidden ('id', $id);
print_submit_button (__('Update'), 'crt', false, 'class="sub upd"');
} else {
}
else {
print_input_hidden ('create_component', 1);
print_submit_button (__('Create'), 'crt', false, 'class="sub next"');
}