egroupware/admin/accounts.php
2000-11-07 20:37:02 +00:00

101 lines
4.3 KiB
PHP
Executable File

<?php
/**************************************************************************\
* phpGroupWare - administration *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_info["flags"]["currentapp"] = "admin";
$phpgw_info["flags"]["disable_message_class"] = True;
$phpgw_info["flags"]["disable_send_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");
$phpgw->templateotal = 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,$phpgw->templateotal));
$phpgw->template->set_var("lang_user_accounts",lang("user accounts"));
$phpgw->template->set_var("right_next_matchs",$phpgw->nextmatchs->right("accounts.php",$start,$phpgw->templateotal));
$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; $i<count($account_info);$i++) {
// echo "<br>0: " . $account_info[1][$key];
// echo "<br>1: " . $a[2];
// echo "<br>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 = '&nbsp;';
if (! $firstname) $firstname = '&nbsp;';
$phpgw->template->set_var("row_firstname",$firstname);
$phpgw->template->set_var("row_lastname",$lastname);
$phpgw->template->set_var("row_edit",'<a href="'.$phpgw->link("editaccount.php","account_id="
. $account_id) . '"> ' . lang("Edit") . ' </a>');
if ($phpgw_info["user"]["userid"] != $account["account_lid"]) {
$phpgw->template->set_var("row_delete",'<a href="' . $phpgw->link("deleteaccount.php",'account_id='
. $account_id) . '"> '.lang("Delete").' </a>');
} else {
$phpgw->template->set_var("row_delete","&nbsp;");
}
$phpgw->template->set_var("row_view",'<a href="' . $phpgw->link("viewaccount.php", "account_id="
. $account_id) . '"> ' . lang("View") . ' </a>');
if ($phpgw->templateotal == 1) {
$phpgw->template->set_var("output","");
}
if ($phpgw->templateotal != ++$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();
?>