$user, "id_perfil" => $profile, "id_grupo" => $group)); // If the profile doesnt exist, we create it if ($profile_data === false) { pandora_audit("User management", "Added profile for user ".safe_input($user)); $return = create_user_profile ($user, $profile, $group); if ($return !== false) { $n_added ++; } } } } } } if ($n_added > 0) { pandora_audit("Masive management", "Add profiles", false, false, 'Profiles: ' . json_encode($profiles_id) . ' Groups: ' . json_encode($groups_id) . 'Users: ' . json_encode($users_id)); } else { pandora_audit("Masive management", "Fail to try add profiles", false, false, 'Profiles: ' . json_encode($profiles_id) . ' Groups: ' . json_encode($groups_id) . 'Users: ' . json_encode($users_id)); } print_result_message ($n_added > 0, __('Profiles added successfully').'('.$n_added.')', __('Profiles cannot be added')); } print_table ($table); unset($table); $table->width = '90%'; $table->data = array (); $table->head = array (); $table->align = array (); $table->style = array (); $table->style[0] = 'font-weight: bold'; $table->style[1] = 'font-weight: bold'; $table->head[0] = __('Profile name'); $table->head[1] = __('Group'); $table->head[2] = __('Users'); $table->align[2] = 'center'; $table->size[0] = '34%'; $table->size[1] = '33%'; $table->size[2] = '33%'; $data = array (); $data[0] = '
'; unset ($table); ?>