$value, 'token' => $token)); } /** * Update a single config value in the database. * * If the config token doesn't exists, it's created. * * @param string Config token to update. * @param string New value to set. * * @return bool True if success. False on failure. */ function update_config_value ($token, $value) { global $config; if (!isset ($config[$token])) return (bool) create_config_value ($token, $value); /* If it has not changed */ if ($config[$token] == $value) return true; $config[$token] = $value; return (bool) process_sql_update ('tconfig', array ('value' => $value), array ('token' => $token)); } /** * Updates all config values in case setup page was invoked */ function update_config () { global $config; /* If user is not even log it, don't try this */ if (! isset ($config['id_user'])) return false; if (! give_acl ($config['id_user'], 0, "PM") && ! is_user_admin ($config['id_user'])) return false; $update_config = (bool) get_parameter ('update_config'); if (! $update_config) return false; $style = (string) get_parameter ('style', $config["style"]); if ($style != $config['style']) $style = substr ($style, 0, strlen ($style) - 4); /* Workaround for ugly language and language_code missmatch */ $config['language_code'] = $config['language']; //Old value for comparation into update_config_value because in php use language but in db is language_code update_config_value ('language_code', (string) get_parameter ('language', $config["language"])); $config["language"] = (string) get_parameter ('language', $config["language"]); update_config_value ('remote_config', (string) get_parameter ('remote_config', $config["remote_config"])); update_config_value ('block_size', (int) get_parameter ('block_size', $config["block_size"])); update_config_value ('days_purge', (int) get_parameter ('days_purge', $config["days_purge"])); update_config_value ('days_compact', (int) get_parameter ('days_compact', $config["days_compact"])); update_config_value ('graph_res', (int) get_parameter ('graph_res', $config["graph_res"])); update_config_value ('step_compact', (int) get_parameter ('step_compact', $config["step_compact"])); update_config_value ('style', $style); update_config_value ('graph_color1', (string) get_parameter ('graph_color1', $config["graph_color1"])); update_config_value ('graph_color2', (string) get_parameter ('graph_color2', $config["graph_color2"])); update_config_value ('graph_color3', (string) get_parameter ('graph_color3', $config["graph_color3"])); update_config_value ('sla_period', (int) get_parameter ('sla_period', $config["sla_period"])); update_config_value ('date_format', (string) get_parameter ('date_format', $config["date_format"])); update_config_value ('trap2agent', (string) get_parameter ('trap2agent', $config["trap2agent"])); update_config_value ('autoupdate', (bool) get_parameter ('autoupdate', $config["autoupdate"])); update_config_value ('prominent_time', (string) get_parameter ('prominent_time', $config["prominent_time"])); update_config_value ('timesource', (string) get_parameter ('timesource', $config["timesource"])); update_config_value ('event_view_hr', (int) get_parameter ('event_view_hr', $config["event_view_hr"])); update_config_value ('loginhash_pwd', (string) get_parameter ('loginhash_pwd', $config["loginhash_pwd"])); update_config_value ('https', (bool) get_parameter ('https', $config["https"])); update_config_value ('compact_header', (bool) get_parameter ('compact_header', $config["compact_header"])); update_config_value ('fontpath', (string) get_parameter ('fontpath', $config["fontpath"])); update_config_value ('round_corner', (bool) get_parameter ('round_corner', $config["round_corner"])); update_config_value ('status_images_set', (string) get_parameter ('status_images_set', $config["status_images_set"])); update_config_value ('agentaccess', (int) get_parameter ('agentaccess', $config['agentaccess'])); update_config_value ('flash_charts', (bool) get_parameter ('flash_charts', $config["flash_charts"])); update_config_value ('attachment_store', (string) get_parameter ('attachment_store', $config["attachment_store"])); } /** * Process config variables */ function process_config () { global $config; $configs = get_db_all_rows_in_table ('tconfig'); if (empty ($configs)) { exit ('