From a7eb74b77df40515284048ab76ed66c283bb1a8b Mon Sep 17 00:00:00 2001 From: jengo Date: Wed, 22 Nov 2000 05:50:42 +0000 Subject: [PATCH] Cleaning up templates --- admin/currentusers.php | 29 ++++++-------------- admin/templates/default/currentusers.tpl | 18 ++---------- admin/templates/default/currentusers_row.tpl | 10 +++++++ 3 files changed, 22 insertions(+), 35 deletions(-) create mode 100644 admin/templates/default/currentusers_row.tpl diff --git a/admin/currentusers.php b/admin/currentusers.php index 543dd4f97b..aa5fad1d5d 100755 --- a/admin/currentusers.php +++ b/admin/currentusers.php @@ -15,11 +15,8 @@ $phpgw_info["flags"] = array("currentapp" => "admin", "enable_nextmatchs_class" => True); include("../header.inc.php"); - $phpgw->template->set_file(array("header" => "currentusers.tpl", - "row" => "currentusers.tpl", - "footer" => "currentusers.tpl")); - - $phpgw->template->set_block("header","row","footer","output"); + $phpgw->template->set_file(array("list" => "currentusers.tpl", + "row" => "currentusers_row.tpl")); if (! $start) { $start = 0; @@ -29,13 +26,13 @@ $phpgw->db->query("select count(*) from sessions",__LINE__,__FILE__); $phpgw->db->next_record(); - $phpgw->templateotal = $phpgw->db->f(0); + $total = $phpgw->db->f(0); $limit = $phpgw->nextmatchs->sql_limit($start); $phpgw->template->set_var("lang_current_users",lang("List of current users")); $phpgw->template->set_var("bg_color",$phpgw_info["theme"][bg_color]); - $phpgw->template->set_var("left_next_matchs",$phpgw->nextmatchs->left("currentusers.php",$start,$phpgw->templateotal)); - $phpgw->template->set_var("right_next_matchs",$phpgw->nextmatchs->right("currentusers.php",$start,$phpgw->templateotal)); + $phpgw->template->set_var("left_next_matchs",$phpgw->nextmatchs->left("currentusers.php",$start,$total)); + $phpgw->template->set_var("right_next_matchs",$phpgw->nextmatchs->right("currentusers.php",$start,$total)); $phpgw->template->set_var("th_bg",$phpgw_info["theme"]["th_bg"]); $phpgw->template->set_var("sort_loginid",$phpgw->nextmatchs->show_sort_order($sort,"session_lid",$order, @@ -48,9 +45,6 @@ "currentusers.php",lang("idle"))); $phpgw->template->set_var("lang_kill",lang("Kill")); - $phpgw->template->parse("out","header"); - - if ($order) { $ordermethod = "order by $order $sort"; } else { @@ -61,8 +55,8 @@ $i = 0; while ($phpgw->db->next_record()) { - $phpgw->templater_color = $phpgw->nextmatchs->alternate_row_color($phpgw->templater_color); - $phpgw->template->set_var("tr_color",$phpgw->templater_color); + $tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color); + $phpgw->template->set_var("tr_color",$tr_color); if (ereg("@",$phpgw->db->f("session_lid"))) { $t = split("@",$phpgw->db->f("session_lid")); @@ -83,14 +77,9 @@ $phpgw->template->set_var("row_kill"," "); } - if ($phpgw->db->num_rows() == 1) { - $phpgw->template->set_var("output",""); - } - if ($phpgw->db->num_rows() != ++$i) { - $phpgw->template->parse("output","row",True); - } + $phpgw->template->parse("rows","row",True); } - $phpgw->template->pparse("out","footer"); + $phpgw->template->pparse("out","list"); $phpgw->common->phpgw_footer(); ?> \ No newline at end of file diff --git a/admin/templates/default/currentusers.tpl b/admin/templates/default/currentusers.tpl index 69fdd0e86c..95642cfbd7 100644 --- a/admin/templates/default/currentusers.tpl +++ b/admin/templates/default/currentusers.tpl @@ -1,4 +1,4 @@ - +
{lang_current_users}: @@ -15,21 +15,9 @@ - -{output} + {rows} - - - - - - - - - - -
{sort_idle} {lang_kill}
{row_loginid}{row_ip}{row_logintime}{row_idle}{row_kill}
- + diff --git a/admin/templates/default/currentusers_row.tpl b/admin/templates/default/currentusers_row.tpl new file mode 100644 index 0000000000..82abdec4a8 --- /dev/null +++ b/admin/templates/default/currentusers_row.tpl @@ -0,0 +1,10 @@ + + + + {row_loginid} + {row_ip} + {row_logintime} + {row_idle} + {row_kill} + +