mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:49:10 +01:00
Redo template set for index.php to allow for better customization.
This commit is contained in:
parent
d3374a96ca
commit
210ae70a45
@ -50,7 +50,7 @@
|
|||||||
|
|
||||||
$this->id = $ab_id;
|
$this->id = $ab_id;
|
||||||
$this->company = $company;
|
$this->company = $company;
|
||||||
$this->company_id = $company_id;
|
//$this->company_id = $company_id;
|
||||||
$this->firstname = $firstname;
|
$this->firstname = $firstname;
|
||||||
$this->lastname = $lastname;
|
$this->lastname = $lastname;
|
||||||
$this->email = $email;
|
$this->email = $email;
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
class addressbook extends addressbook_
|
class addressbook extends addressbook_
|
||||||
{
|
{
|
||||||
function colname($column,$listid) {
|
function coldata($column,$listid) {
|
||||||
if ($column == "company") return $this->company[$listid];
|
if ($column == "company") return $this->company[$listid];
|
||||||
elseif ($column == "firstname") return $this->firstname[$listid];
|
elseif ($column == "firstname") return $this->firstname[$listid];
|
||||||
elseif ($column == "lastname") return $this->lastname[$listid];
|
elseif ($column == "lastname") return $this->lastname[$listid];
|
||||||
|
@ -24,13 +24,13 @@
|
|||||||
$t = new Template($phpgw_info["server"]["app_tpl"]);
|
$t = new Template($phpgw_info["server"]["app_tpl"]);
|
||||||
$t->set_file(array( "addressbook_header" => "header.tpl",
|
$t->set_file(array( "addressbook_header" => "header.tpl",
|
||||||
"searchfilter" => "searchfilter.tpl",
|
"searchfilter" => "searchfilter.tpl",
|
||||||
"body" => "list.tpl",
|
"column" => "column.tpl",
|
||||||
|
"row" => "row.tpl",
|
||||||
"addressbook_footer" => "footer.tpl" ));
|
"addressbook_footer" => "footer.tpl" ));
|
||||||
|
|
||||||
$this = CreateObject("addressbook.addressbook");
|
$this = CreateObject("addressbook.addressbook");
|
||||||
$entries = $this->get_entries($query,$filter,$sort,$order,$start);
|
$entries = $this->get_entries($query,$filter,$sort,$order,$start);
|
||||||
|
|
||||||
$rows="";
|
|
||||||
$columns_to_display=$this->columns_to_display;
|
$columns_to_display=$this->columns_to_display;
|
||||||
if($phpgw_info["user"]["preferences"]["common"]["maxmatchs"] ) {
|
if($phpgw_info["user"]["preferences"]["common"]["maxmatchs"] ) {
|
||||||
$limit = $phpgw_info["user"]["preferences"]["common"]["maxmatchs"];
|
$limit = $phpgw_info["user"]["preferences"]["common"]["maxmatchs"];
|
||||||
@ -38,56 +38,10 @@
|
|||||||
$limit = 15;
|
$limit = 15;
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($i=0;$i<$limit;$i++) { // each entry
|
$t->set_var(font,$phpgw_info["theme"]["font"]);
|
||||||
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
$t->set_var("lang_view",lang("View"));
|
||||||
$rows .= '<tr bgcolor="#'.$tr_color . '">';
|
$t->set_var("lang_vcard",lang("VCard"));
|
||||||
while ($column = each($columns_to_display)) { // each entry column
|
$t->set_var("lang_edit",lang("Edit"));
|
||||||
$colname = $this->colname($column[0],$i);
|
|
||||||
$myid = $entries->ab_id[$i];
|
|
||||||
$myowner = $entries->owner[$i];
|
|
||||||
// Some fields require special formatting.
|
|
||||||
if ($column[0] == "url") {
|
|
||||||
$rows .= '<td valign="top"><font face="' . $phpgw_info["theme"]["font"] . '" size="2">'
|
|
||||||
. '<a href="' . $colname . '" target="_new">' . $colname . '</a> </font></td>';
|
|
||||||
} else if ($column[0] == "email") {
|
|
||||||
if ($phpgw_info["user"]["apps"]["email"]) {
|
|
||||||
$rows .= '<td valign="top"><font face="' . $phpgw_info["theme"]["font"] . '" size="2">'
|
|
||||||
. '<a href="' . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/email/compose.php",
|
|
||||||
"to=" . urlencode($colname)) . '" target="_new">' . $colname . '</a> </font></td>';
|
|
||||||
} else {
|
|
||||||
$rows .= '<td valign="top"><font face="' . $phpgw_info["theme"]["font"] . '" size="2">'
|
|
||||||
. '<a href="mailto:' . $colname . '">' . $colname . '</a> </font></td>';
|
|
||||||
}
|
|
||||||
} else { // But these do not
|
|
||||||
$rows .= '<td valign="top"><font face="' . $phpgw_info["theme"]["font"] . '" size="2">'
|
|
||||||
. $colname . ' </font></td>';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
reset($columns_to_display); // If we don't reset it, our inside while won't loop
|
|
||||||
|
|
||||||
$rows .= '<td valign="top" width="3%">
|
|
||||||
<font face="'.$phpgw_info["theme"]["font"].'" size="2">
|
|
||||||
<a href="'. $phpgw->link("view.php","ab_id=$myid&start=$start&order=$order&filter="
|
|
||||||
. "$filter&query=$query&sort=$sort").'
|
|
||||||
">'.lang("View").'</a>
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
<td valign=top width=3%>
|
|
||||||
<font face="'.$phpgw_info["theme"]["font"].'" size=2>
|
|
||||||
<a href="'.$phpgw->link("vcardout.php","ab_id=$myid&start=$start&order=$order&filter="
|
|
||||||
. "$filter&query=$query&sort=$sort").'
|
|
||||||
">'.lang("vcard").'</a>
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
<td valign="top" width="5%">
|
|
||||||
<font face="'.$phpgw_info["theme"]["font"].'" size="2">
|
|
||||||
'.$phpgw->common->check_owner($myowner,"edit.php",lang("edit"),"ab_id=".$myid."&start=".$start."&sort=".$sort."&order=".$order."&query=".$query."&sort=".$sort).'
|
|
||||||
</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
';
|
|
||||||
}
|
|
||||||
|
|
||||||
$t->set_var(searchreturn,$this->searchreturn);
|
$t->set_var(searchreturn,$this->searchreturn);
|
||||||
$t->set_var(lang_showing,$this->lang_showing);
|
$t->set_var(lang_showing,$this->lang_showing);
|
||||||
@ -100,9 +54,6 @@
|
|||||||
$t->set_var("lang_addvcard",lang("AddVCard"));
|
$t->set_var("lang_addvcard",lang("AddVCard"));
|
||||||
$t->set_var("lang_import",lang("Import File"));
|
$t->set_var("lang_import",lang("Import File"));
|
||||||
$t->set_var("import_url",$phpgw->link("import.php"));
|
$t->set_var("import_url",$phpgw->link("import.php"));
|
||||||
$t->set_var("lang_view",lang("View"));
|
|
||||||
$t->set_var("lang_vcard",lang("VCard"));
|
|
||||||
$t->set_var("lang_edit",lang("Edit"));
|
|
||||||
$t->set_var("start",$start);
|
$t->set_var("start",$start);
|
||||||
$t->set_var("sort",$sort);
|
$t->set_var("sort",$sort);
|
||||||
$t->set_var("order",$order);
|
$t->set_var("order",$order);
|
||||||
@ -113,15 +64,51 @@
|
|||||||
$t->set_var("start",$start);
|
$t->set_var("start",$start);
|
||||||
$t->set_var("filter",$filter);
|
$t->set_var("filter",$filter);
|
||||||
$t->set_var("cols",$this->cols);
|
$t->set_var("cols",$this->cols);
|
||||||
$t->set_var("rows",$rows);
|
|
||||||
|
|
||||||
$t->parse("out","addressbook_header");
|
|
||||||
$t->pparse("out","addressbook_header");
|
$t->pparse("out","addressbook_header");
|
||||||
$t->parse("out","searchfilter");
|
|
||||||
$t->pparse("out","searchfilter");
|
$t->pparse("out","searchfilter");
|
||||||
$t->parse("out","body");
|
|
||||||
$t->pparse("out","body");
|
for ($i=0;$i<$limit;$i++) { // each entry
|
||||||
$t->parse("out","addressbook_footer");
|
$t->set_var(columns,"");
|
||||||
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
||||||
|
$t->set_var(row_tr_color,$tr_color);
|
||||||
|
while ($column = each($columns_to_display)) { // each entry column
|
||||||
|
$ref=$data="";
|
||||||
|
$coldata = $this->coldata($column[0],$i);
|
||||||
|
$myid = $entries->ab_id[$i];
|
||||||
|
$myowner = $entries->owner[$i];
|
||||||
|
// Some fields require special formatting.
|
||||||
|
if ($column[0] == "url") {
|
||||||
|
$ref='<a href="'.$coldata.'" target="_new">';
|
||||||
|
$data=$coldata.'</a>';
|
||||||
|
} elseif ($column[0] == "email") {
|
||||||
|
if ($phpgw_info["user"]["apps"]["email"]) {
|
||||||
|
$ref='<a href="'.$phpgw->link($phpgw_info["server"]["webserver_url"]
|
||||||
|
. "/email/compose.php","to=" . urlencode($coldata)).'" target="_new">';
|
||||||
|
} else {
|
||||||
|
$ref='<a href="mailto:"'.$coldata.'">'.$coldata.'</a>';
|
||||||
|
}
|
||||||
|
$data=$coldata."</a>";
|
||||||
|
} else { // But these do not
|
||||||
|
$ref=" "; $data=$coldata;
|
||||||
|
}
|
||||||
|
$t->set_var(col_data,$ref.$data);
|
||||||
|
$t->parse("columns","column",True);
|
||||||
|
}
|
||||||
|
|
||||||
|
reset($columns_to_display); // If we don't reset it, our inside while won't loop
|
||||||
|
|
||||||
|
$t->set_var(row_view_link,$phpgw->link("view.php","ab_id=$myid&start=$start&order=$order&filter="
|
||||||
|
. "$filter&query=$query&sort=$sort"));
|
||||||
|
$t->set_var(row_vcard_link,$phpgw->link("vcardout.php","ab_id=$myid&start=$start&order=$order&filter="
|
||||||
|
. "$filter&query=$query&sort=$sort"));
|
||||||
|
$t->set_var(row_edit_link,$phpgw->common->check_owner($myowner,"edit.php",lang("edit"),"ab_id="
|
||||||
|
.$myid."&start=".$start."&sort=".$sort."&order=".$order."&query=".$query."&sort=".$sort));
|
||||||
|
|
||||||
|
$t->parse("rows","row",True);
|
||||||
|
$t->pparse("out","row");
|
||||||
|
}
|
||||||
|
|
||||||
$t->pparse("out","addressbook_footer");
|
$t->pparse("out","addressbook_footer");
|
||||||
|
|
||||||
$phpgw->common->phpgw_footer();
|
$phpgw->common->phpgw_footer();
|
||||||
|
3
addressbook/templates/default/column.tpl
Normal file
3
addressbook/templates/default/column.tpl
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<td valign="top">
|
||||||
|
<font face="Arial, Helvetica, san-serif" size="2">{col_data} </font>
|
||||||
|
</td>
|
@ -1,4 +1,5 @@
|
|||||||
<!-- BEGIN addressbook_footer -->
|
<!-- BEGIN addressbook_footer -->
|
||||||
|
</table>
|
||||||
<form method="POST" action="{actionurl}">
|
<form method="POST" action="{actionurl}">
|
||||||
<input type="hidden" name="start" value="{start}">
|
<input type="hidden" name="start" value="{start}">
|
||||||
<input type="hidden" name="filter" value="{filter}">
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
|
|
||||||
<!-- BEGIN list -->
|
|
||||||
|
|
||||||
{rows}
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<!-- END list -->
|
|
14
addressbook/templates/default/row.tpl
Normal file
14
addressbook/templates/default/row.tpl
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<!-- BEGIN row -->
|
||||||
|
<tr bgcolor="#{row_tr_color}">
|
||||||
|
{columns}
|
||||||
|
<td valign="top" width="3%">
|
||||||
|
<font face="{font}" size="2"><a href="{row_view_link}">{lang_view}</a></font>
|
||||||
|
</td>
|
||||||
|
<td valign=top width=3%>
|
||||||
|
<font face="{font}" size=2><a href="{row_vcard_link}">{lang_vcard}</a></font>
|
||||||
|
</td>
|
||||||
|
<td valign="top" width="5%">
|
||||||
|
<font face="{font}" size="2">{row_edit_link}</font>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<!-- END row -->
|
3
addressbook/templates/justweb/column.tpl
Normal file
3
addressbook/templates/justweb/column.tpl
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<td valign="top">
|
||||||
|
<font face="Arial, Helvetica, san-serif" size="2">{col_data} </font>
|
||||||
|
</td>
|
@ -1,4 +1,5 @@
|
|||||||
<!-- BEGIN addressbook_footer -->
|
<!-- BEGIN addressbook_footer -->
|
||||||
|
</table>
|
||||||
<form method="POST" action="{actionurl}">
|
<form method="POST" action="{actionurl}">
|
||||||
<input type="hidden" name="start" value="{start}">
|
<input type="hidden" name="start" value="{start}">
|
||||||
<input type="hidden" name="filter" value="{filter}">
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
|
|
||||||
<!-- BEGIN list -->
|
|
||||||
|
|
||||||
{rows}
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<!-- END list -->
|
|
14
addressbook/templates/justweb/row.tpl
Normal file
14
addressbook/templates/justweb/row.tpl
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<!-- BEGIN row -->
|
||||||
|
<tr bgcolor="#{row_tr_color}">
|
||||||
|
{columns}
|
||||||
|
<td valign="top" width="3%">
|
||||||
|
<font face="{font}" size="2"><a href="{row_view_link}">{lang_view}</a></font>
|
||||||
|
</td>
|
||||||
|
<td valign=top width=3%>
|
||||||
|
<font face="{font}" size=2><a href="{row_vcard_link}">{lang_vcard}</a></font>
|
||||||
|
</td>
|
||||||
|
<td valign="top" width="5%">
|
||||||
|
<font face="{font}" size="2">{row_edit_link}</font>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<!-- END row -->
|
3
addressbook/templates/verdilak/column.tpl
Normal file
3
addressbook/templates/verdilak/column.tpl
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<td valign="top">
|
||||||
|
<font face="Arial, Helvetica, san-serif" size="2">{col_data} </font>
|
||||||
|
</td>
|
@ -1,4 +1,5 @@
|
|||||||
<!-- BEGIN addressbook_footer -->
|
<!-- BEGIN addressbook_footer -->
|
||||||
|
</table>
|
||||||
<form method="POST" action="{actionurl}">
|
<form method="POST" action="{actionurl}">
|
||||||
<input type="hidden" name="start" value="{start}">
|
<input type="hidden" name="start" value="{start}">
|
||||||
<input type="hidden" name="filter" value="{filter}">
|
<input type="hidden" name="filter" value="{filter}">
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
|
|
||||||
<!-- BEGIN list -->
|
|
||||||
|
|
||||||
{rows}
|
|
||||||
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<!-- END list -->
|
|
14
addressbook/templates/verdilak/row.tpl
Normal file
14
addressbook/templates/verdilak/row.tpl
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<!-- BEGIN row -->
|
||||||
|
<tr bgcolor="#{row_tr_color}">
|
||||||
|
{columns}
|
||||||
|
<td valign="top" width="3%">
|
||||||
|
<font face="{font}" size="2"><a href="{row_view_link}">{lang_view}</a></font>
|
||||||
|
</td>
|
||||||
|
<td valign=top width=3%>
|
||||||
|
<font face="{font}" size=2><a href="{row_vcard_link}">{lang_vcard}</a></font>
|
||||||
|
</td>
|
||||||
|
<td valign="top" width="5%">
|
||||||
|
<font face="{font}" size="2">{row_edit_link}</font>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<!-- END row -->
|
Loading…
Reference in New Issue
Block a user