set_file(array( "header" => "accounts.tpl",
"row" => "accounts.tpl",
"footer" => "accounts.tpl" ));
$t->set_block("header","row","footer");
$total = account_total();
$t->set_var("bg_color",$phpgw_info["theme"]["bg_color"]);
$t->set_var("th_bg",$phpgw_info["theme"]["th_bg"]);
$t->set_var("left_next_matchs",$phpgw->nextmatchs->left("accounts.php",$start,$total));
$t->set_var("lang_user_accounts",lang("user accounts"));
$t->set_var("right_next_matchs",$phpgw->nextmatchs->right("accounts.php",$start,$total));
$t->set_var("lang_lastname",$phpgw->nextmatchs->show_sort_order($sort,"account_lastname",$order,"accounts.php",lang("last name")));
$t->set_var("lang_firstname",$phpgw->nextmatchs->show_sort_order($sort,"account_firstname",$order,"accounts.php",lang("first name")));
$t->set_var("lang_edit",lang("Edit"));
$t->set_var("lang_delete",lang("Delete"));
$t->set_var("lang_view",lang("View"));
$t->parse("out","header");
$account_info = account_read($method,$start,$sort,$order);
while (list($null,$account) = each($account_info)) {
echo "
" . $account[1];
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
$t->set_var("tr_color",$tr_color);
$lastname = $account["account_lastname"];
$firstname = $account["account_firstname"];
if (! $lastname) $lastname = ' ';
if (! $firstname) $firstname = ' ';
$t->set_var("row_firstname",$firstname);
$t->set_var("row_lastname",$lastname);
$t->set_var("row_edit",' ' . lang("Edit") . ' ');
if ($phpgw_info["user"]["userid"] != $account["account_lid"]) {
$t->set_var("row_delete",' '.lang("Delete").' ');
} else {
$t->set_var("row_delete"," ");
}
$t->set_var("row_view",' ' . lang("View") . ' ');
if ($phpgw->db->num_rows() == 1) {
$t->set_var("output","");
}
if ($phpgw->db->num_rows() != ++$i) {
$t->parse("output","row",True);
}
}
$t->set_var("actionurl",$phpgw->link("newaccount.php"));
$t->set_var("lang_add",lang("add"));
$t->set_var("lang_search",lang("search"));
$t->pparse("out","footer");
$phpgw->common->phpgw_footer();
?>