array( 'active' => false, 'text' => '' . html_print_image ("images/god3.png", true, array ("title" => __('User management'))) .''), 'profile' => array( 'active' => false, 'text' => '' . html_print_image ("images/profiles.png", true, array ("title" => __('Profile management'))) .'')); $buttons[$tab]['active'] = true; // Header ui_print_page_header (__('User management').' » '.__('Profiles defined in Pandora'), "images/god3.png", false, "", true, $buttons); $new_profile = (bool) get_parameter ('new_profile'); $id_profile = (int) get_parameter ('id'); // Edit profile if ($id_profile || $new_profile) { if ($new_profile) { $name = ''; $incident_view = 0; $incident_edit = 0; $incident_management = 0; $agent_view = 0; $agent_edit = 0; $alert_edit = 0; $user_management = 0; $db_management = 0; $alert_management = 0; $pandora_management = 0; $page_title = __('Create profile'); } else { $profile = db_get_row ('tperfil', 'id_perfil', $id_profile); if ($profile === false) { echo '

'.__('There was a problem loading profile').'

'; echo ''; echo '
 
'; echo ''; echo ''; echo ''; exit; } $name = $profile["name"]; $incident_view = (bool) $profile["incident_view"]; $incident_edit = (bool) $profile["incident_edit"]; $incident_management = (bool) $profile["incident_management"]; $agent_view = (bool) $profile["agent_view"]; $agent_edit = (bool) $profile["agent_edit"]; $alert_edit = (bool) $profile["alert_edit"]; $user_management = (bool) $profile["user_management"]; $db_management = (bool) $profile["db_management"]; $alert_management = (bool) $profile["alert_management"]; $pandora_management = (bool) $profile["pandora_management"]; $id_audit = db_pandora_audit("User management", "Edit profile ". $name); enterprise_include_once('include/functions_audit.php'); $info = 'Name: ' . $name . ' Incident view: ' . $incident_view . ' Incident edit: ' . $incident_edit . ' Incident management: ' . $incident_management . ' Agent view: ' . $agent_view . ' Agent edit: ' . $agent_edit . ' Alert edit: ' . $alert_edit . ' User management: ' . $user_management . ' DB management: ' . $db_management . ' Alert management: ' . $alert_management . ' Pandora Management: ' . $pandora_management; enterprise_hook('audit_pandora_enterprise', array($id_audit, $info)); $page_title = __('Update profile'); } $table->width = '98%'; $table->class = 'databox'; $table->size = array (); $table->style = array (); $table->style[0] = 'font-weight: bold'; $table->data = array (); $table->data[0][0] = __('Profile name'); $table->data[0][1] = html_print_input_text ('name', $name, '', 30, 60, true); $table->data[1][0] = __('View incidents'); $table->data[1][1] = html_print_checkbox ('incident_view', 1, $incident_view, true); $table->data[2][0] = __('Edit incidents'); $table->data[2][1] = html_print_checkbox ('incident_edit', 1, $incident_edit, true); $table->data[3][0] = __('Manage incidents'); $table->data[3][1] = html_print_checkbox ('incident_management', 1, $incident_management, true); $table->data[4][0] = __('View agents'); $table->data[4][1] = html_print_checkbox ('agent_view', 1, $agent_view, true); $table->data[5][0] = __('Edit agents'); $table->data[5][1] = html_print_checkbox ('agent_edit', 1, $agent_edit, true); $table->data[6][0] = __('Edit alerts'); $table->data[6][1] = html_print_checkbox ('alert_edit', 1, $alert_edit, true); $table->data[7][0] = __('Manage users'); $table->data[7][1] = html_print_checkbox ('user_management', 1, $user_management, true); $table->data[8][0] = __('Manage Database'); $table->data[8][1] = html_print_checkbox ('db_management', 1, $db_management, true); $table->data[9][0] = __('Manage alerts'); $table->data[9][1] = html_print_checkbox ('alert_management', 1, $alert_management, true); $table->data[10][0] = __('Pandora management'); $table->data[10][1] = html_print_checkbox ('pandora_management', 1, $pandora_management, true); echo '
'; html_print_table ($table); echo '
'; if ($new_profile) { html_print_submit_button (__('Add'), "crt", false, 'class="sub wand"'); html_print_input_hidden ('create_profile', 1); } else { html_print_input_hidden ('id', $id_profile); html_print_input_hidden ('update_profile', 1); html_print_submit_button (__('Update'), "upd", false, 'class="sub upd"'); } echo "
"; } ?>