"admin", "enable_nextmatchs_class" => True); include("../header.inc.php"); include($phpgw_info["server"]["server_root"] . "/admin/inc/accounts_" . $phpgw_info["server"]["auth_type"] . ".inc.php"); $phpgw->template->set_file(array("header" => "accounts.tpl", "row" => "accounts.tpl", "footer" => "accounts.tpl")); $phpgw->template->set_block("header","row","footer"); $total = account_total(); $phpgw->template->set_var("bg_color",$phpgw_info["theme"]["bg_color"]); $phpgw->template->set_var("th_bg",$phpgw_info["theme"]["th_bg"]); $phpgw->template->set_var("left_next_matchs",$phpgw->nextmatchs->left("accounts.php",$start,$total)); $phpgw->template->set_var("lang_user_accounts",lang("user accounts")); $phpgw->template->set_var("right_next_matchs",$phpgw->nextmatchs->right("accounts.php",$start,$total)); $phpgw->template->set_var("lang_loginid",$phpgw->nextmatchs->show_sort_order($sort,"account_lid",$order,"accounts.php",lang("LoginID"))); $phpgw->template->set_var("lang_lastname",$phpgw->nextmatchs->show_sort_order($sort,"account_lastname",$order,"accounts.php",lang("last name"))); $phpgw->template->set_var("lang_firstname",$phpgw->nextmatchs->show_sort_order($sort,"account_firstname",$order,"accounts.php",lang("first name"))); $phpgw->template->set_var("lang_edit",lang("Edit")); $phpgw->template->set_var("lang_delete",lang("Delete")); $phpgw->template->set_var("lang_view",lang("View")); $phpgw->template->parse("out","header"); $account_info = account_read($method,$start,$sort,$order); while (list($null,$account) = each($account_info)) { // while (list($key) = each($account_info[0])) { // for ($i=0; $i0: " . $account_info[1][$key]; // echo "
1: " . $a[2]; // echo "
2: " . $b[1]; $lastname = $account["account_lastname"]; $firstname = $account["account_firstname"]; $account_id = $account["account_id"]; $loginid = $account["account_lid"]; $phpgw->templater_color = $phpgw->nextmatchs->alternate_row_color($phpgw->templater_color); $phpgw->template->set_var("tr_color",$phpgw->templater_color); // $lastname = $account["account_lastname"]; // $firstname = $account["account_firstname"]; if (! $lastname) $lastname = ' '; if (! $firstname) $firstname = ' '; $phpgw->template->set_var("row_loginid",$loginid); $phpgw->template->set_var("row_firstname",$firstname); $phpgw->template->set_var("row_lastname",$lastname); $phpgw->template->set_var("row_edit",' ' . lang("Edit") . ' '); if ($phpgw_info["user"]["userid"] != $account["account_lid"]) { $phpgw->template->set_var("row_delete",' '.lang("Delete").' '); } else { $phpgw->template->set_var("row_delete"," "); } $phpgw->template->set_var("row_view",' ' . lang("View") . ' '); if ($total == 1) { $phpgw->template->set_var("output",""); } if ($total != ++$i) { $phpgw->template->parse("output","row",True); } } $phpgw->template->set_var("actionurl",$phpgw->link("newaccount.php")); $phpgw->template->set_var("lang_add",lang("add")); $phpgw->template->set_var("lang_search",lang("search")); $phpgw->template->pparse("out","footer"); $phpgw->common->phpgw_footer(); account_close(); ?>