pandorafms/pandora_console/godmode/update_manager/update_manager.setup.php

124 lines
4.7 KiB
PHP
Raw Normal View History

<?php
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; version 2
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
global $config;
check_login ();
if (! check_acl ($config['id_user'], 0, "PM") && ! is_user_admin ($config['id_user'])) {
db_pandora_audit("ACL Violation", "Trying to access Setup Management");
require ("general/noaccess.php");
return;
}
$action_update_url_update_manager = (bool)get_parameter(
'action_update_url_update_manager', 0);
2016-06-14 16:31:27 +02:00
if(!$action_update_url_update_manager){
$url_update_manager = get_parameter('url_update_manager',$config['url_update_manager']);
$update_manager_proxy_server = get_parameter('update_manager_proxy_server',$config['update_manager_proxy_server']);
$update_manager_proxy_port = get_parameter('update_manager_proxy_port',$config['update_manager_proxy_port']);
$update_manager_proxy_user = get_parameter('update_manager_proxy_user',$config['update_manager_proxy_user']);
$update_manager_proxy_password = get_parameter('update_manager_proxy_password',$config['update_manager_proxy_password']);
if ($action_update_url_update_manager) {
$result = config_update_value('url_update_manager',
$url_update_manager);
if ($result)
$result = config_update_value('update_manager_proxy_server',
$update_manager_proxy_server);
if ($result)
$result = config_update_value('update_manager_proxy_port',
$update_manager_proxy_port);
if ($result)
$result = config_update_value('update_manager_proxy_user',
$update_manager_proxy_user);
if ($result)
$result = config_update_value('update_manager_proxy_password',
$update_manager_proxy_password);
ui_print_result_message($result,
__('Succesful Update the url config vars.'),
__('Unsuccesful Update the url config vars.'));
}
}else{
$url_update_manager = get_parameter('url_update_manager','');
$update_manager_proxy_server = get_parameter('update_manager_proxy_server','');
$update_manager_proxy_port = get_parameter('update_manager_proxy_port','');
$update_manager_proxy_user = get_parameter('update_manager_proxy_user','');
$update_manager_proxy_password = get_parameter('update_manager_proxy_password','');
if ($action_update_url_update_manager) {
$result = config_update_value('url_update_manager',
$url_update_manager);
if ($result)
$result = config_update_value('update_manager_proxy_server',
$update_manager_proxy_server);
if ($result)
$result = config_update_value('update_manager_proxy_port',
$update_manager_proxy_port);
if ($result)
$result = config_update_value('update_manager_proxy_user',
$update_manager_proxy_user);
if ($result)
$result = config_update_value('update_manager_proxy_password',
$update_manager_proxy_password);
ui_print_result_message($result,
__('Succesful Update the url config vars.'),
__('Unsuccesful Update the url config vars.'));
}
}
echo '<form method="post" action="index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=setup">';
2015-06-25 10:07:53 +02:00
$table = new stdClass();
2015-06-16 16:09:50 +02:00
$table->width = '100%';
$table->class = 'databox filters';
2015-06-16 16:09:50 +02:00
$table->style[0] = 'font-weight: bolder;';
$table->data[0][0] = __('URL update manager:');
$table->data[0][1] = html_print_input_text('url_update_manager',
$url_update_manager, __('URL update manager'), 40, 60, true);
$table->data[1][0] = __('Proxy server:');
$table->data[1][1] = html_print_input_text('update_manager_proxy_server',
$update_manager_proxy_server, __('Proxy server'), 40, 60, true);
$table->data[2][0] = __('Proxy port:');
$table->data[2][1] = html_print_input_text('update_manager_proxy_port',
$update_manager_proxy_port, __('Proxy port'), 40, 60, true);
$table->data[3][0] = __('Proxy user:');
$table->data[3][1] = html_print_input_text('update_manager_proxy_user',
$update_manager_proxy_user, __('Proxy user'), 40, 60, true);
$table->data[4][0] = __('Proxy password:');
$table->data[4][1] = html_print_input_password('update_manager_proxy_password',
$update_manager_proxy_password, __('Proxy password'), 40, 60, true);
html_print_input_hidden('action_update_url_update_manager', 1);
html_print_table($table);
echo '<div class="action-buttons" style="width: '.$table->width.'">';
html_print_submit_button (__('Update'), 'update_button', false,
'class="sub upd"');
echo '</div>';
echo '</form>';
?>