"admin", "noheader" => True, "nonavbar" => True); include("../header.inc.php"); include($phpgw_info["server"]["server_root"] . "/admin/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") { 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","