'.__('Alert commands').''; $update_command = (bool) get_parameter ('update_command'); $create_command = (bool) get_parameter ('create_command'); $delete_command = (bool) get_parameter ('delete_command'); if ($create_command) { $name = (string) get_parameter ('name'); $command = (string) get_parameter ('command'); $description = (string) get_parameter ('description'); $result = create_alert_command ($name, $command, array ('description' => $description)); print_error_message ($result, __('Successfully created'), __('Could not be created')); } if ($update_command) { $id = (int) get_parameter ('id'); $alert = get_alert_command ($id); if ($alert['internal']) { audit_db ($config['id_user'], $REMOTE_ADDR, "ACL Violation", "Trying to access Alert Management"); require ("general/noaccess.php"); exit; } $name = (string) get_parameter ('name'); $command = (string) get_parameter ('command'); $description = (string) get_parameter ('description'); $result = update_alert_command ($id, $name, $command, array ('description' => $description)); print_error_message ($result, __('Successfully updated'), __('Could not be updated')); } if ($delete_command) { $id = get_parameter ('id'); // Commands below 4 are special and cannot be deleted if ($id < 4) { audit_db ($config['id_user'], $REMOTE_ADDR, "ACL Violation", "Trying to access Alert Management"); require ("general/noaccess.php"); exit; } $result = delete_alert_command ($id); print_error_message ($result, __('Successfully deleted'), __('Could not be deleted')); } $table->width = '90%'; $table->data = array (); $table->head = array (); $table->head[0] = __('Name'); $table->head[1] = __('Description'); $table->head[2] = __('Delete'); $table->style = array (); $table->style[0] = 'font-weight: bold'; $table->size = array (); $table->size[2] = '40px'; $table->align = array (); $table->align[2] = 'center'; $commands = get_db_all_rows_in_table ('talert_commands'); if ($commands === false) $commands = array (); foreach ($commands as $command) { $data = array (); if (! $command['internal']) $data[0] = ''. $command['name'].''; else $data[0] = $command['name']; $data[1] = $command['description']; $data[2] = ''; if (! $command['internal']) $data[2] = ''. ''; array_push ($table->data, $data); } print_table ($table); echo '
'; echo '
'; print_submit_button (__('Create'), 'create', false, 'class="sub next"'); print_input_hidden ('create_alert', 1); echo '
'; echo '
'; ?>