"admin", "noheader" => True, "nonavbar" => True); include("../header.inc.php"); include($phpgw_info["server"]["app_inc"]."/accounts_".$phpgw_info["server"]["account_repository"].".inc.php"); function add_default_preferences($account_id) { global $phpgw; /* $phpgw->common->preferences_add($account_id,"maxmatchs","common","15"); $phpgw->common->preferences_add($account_id,"theme","common","default"); $phpgw->common->preferences_add($account_id,"tz_offset","common","0"); $phpgw->common->preferences_add($account_id,"dateformat","common","m/d/Y"); $phpgw->common->preferences_add($account_id,"timeformat","common","12"); $phpgw->common->preferences_add($account_id,"lang","common","en"); $phpgw->common->preferences_add($account_id,"company","addressbook","True"); $phpgw->common->preferences_add($account_id,"lastname","addressbook","True"); $phpgw->common->preferences_add($account_id,"firstname","addressbook","True"); */ // Even if they don't have access to the calendar, we will add these. // Its better then the calendar being all messed up, they will be deleted // the next time the update there preferences. /* $phpgw->common->preferences_add($account_id,"weekstarts","calendar","Monday"); $phpgw->common->preferences_add($account_id,"workdaystarts","calendar","9"); $phpgw->common->preferences_add($account_id,"workdayends","calendar","17"); */ } if ($submit) { $totalerrors = 0; if ($phpgw_info["server"]["account_repository"] == "ldap" && ! $allow_long_loginids) { if (strlen($n_loginid) > 8) { $error[$totalerrors++] = lang("The loginid can not be more then 8 characters"); } } if (! $n_loginid) $error[$totalerrors++] = lang("You must enter a loginid"); if (! $n_passwd) $error[$totalerrors++] = lang("You must enter a password"); if ($n_passwd == $n_loginid) $error[$totalerrors++] = lang("The login and password can not be the same"); if ($n_passwd != $n_passwd_2) $error[$totalerrors++] = lang("The two passwords are not the same"); if (count($new_permissions) == 0) $error[$totalerrors++] = lang("You must add at least 1 permission to this account"); if (count($n_groups) == 0) $error[$totalerrors++] = lang("Account must belong to at least 1 group"); if (account_exsists($n_loginid)) { $error[$totalerrors++] = lang("That loginid has already been taken"); } if (! $error) { $cd = account_add(array("loginid" => $n_loginid, "permissions" => $new_permissions, "firstname" => $n_firstname, "lastname" => $n_lastname, "passwd" => $n_passwd, "groups" => $phpgw->accounts->groups_array_to_string($n_groups))); Header("Location: " . $phpgw->link("accounts.php","cd=$cd")); exit; } } $phpgw->template->set_file(array("form" => "account_form.tpl")); $phpgw->common->phpgw_header(); $phpgw->common->navbar(); $phpgw->template->set_var("lang_action",lang("Add new account")); if ($totalerrors) { $phpgw->template->set_var("error_messages","
" . $phpgw->common->error_list($error) . "
"); } else { $phpgw->template->set_var("error_messages",""); } $phpgw->template->set_var("form_action",$phpgw->link("newaccount.php")); $phpgw->template->set_var("lang_loginid",lang("LoginID")); $phpgw->template->set_var("n_loginid_value",$n_loginid); $phpgw->template->set_var("lang_password",lang("Password")); $phpgw->template->set_var("n_passwd_value",$n_passwd); $phpgw->template->set_var("lang_reenter_password",lang("Re-Enter Password")); $phpgw->template->set_var("n_passwd_2_value",$n_passwd_2); $phpgw->template->set_var("lang_firstname",lang("First Name")); $phpgw->template->set_var("n_firstname_value",$n_firstname); $phpgw->template->set_var("lang_lastname",lang("Last Name")); $phpgw->template->set_var("n_lastname_value",$n_lastname); $phpgw->template->set_var("lang_groups",lang("Groups")); $group_select = '"; $phpgw->template->set_var("groups_select",$group_select); $phpgw->template->set_var("",""); $i = 0; while ($permission = each($phpgw_info["apps"])) { if ($permission[1]["enabled"]) { $perm_display[$i][0] = $permission[0]; $perm_display[$i][1] = $permission[1]["title"]; $i++; } } for ($i=0;$i<200;) { // The $i<200 is only used for a brake if (! $perm_display[$i][1]) break; $perms_html .= '' . lang($perm_display[$i][1]) . '' . '' . 'template->set_var("permissions_list",$perms_html); $phpgw->template->set_var("lang_button",Lang("Add")); $phpgw->template->pparse("out","form"); account_close(); $phpgw->common->phpgw_footer(); ?>