mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-18 11:21:23 +01:00
Update to use get_tpl_dir call
This commit is contained in:
parent
11e8f90aa7
commit
81caecf253
@ -20,7 +20,8 @@
|
|||||||
$phpgw_info["flags"]["enable_addressbook_class"] = True;
|
$phpgw_info["flags"]["enable_addressbook_class"] = True;
|
||||||
include("../header.inc.php");
|
include("../header.inc.php");
|
||||||
|
|
||||||
$t = new Template($phpgw_info["server"]["app_tpl"]);
|
#$t = new Template($phpgw_info["server"]["app_tpl"]);
|
||||||
|
$t = new Template($phpgw->common->get_tpl_dir("addressbook"));
|
||||||
$t->set_file(array( "add" => "add.tpl"));
|
$t->set_file(array( "add" => "add.tpl"));
|
||||||
|
|
||||||
$this = CreateObject("phpgwapi.contacts");
|
$this = CreateObject("phpgwapi.contacts");
|
||||||
|
@ -26,15 +26,17 @@
|
|||||||
|
|
||||||
$this = CreateObject("phpgwapi.contacts");
|
$this = CreateObject("phpgwapi.contacts");
|
||||||
|
|
||||||
$t = new Template($phpgw_info["server"]["app_tpl"]);
|
#$t = new Template($phpgw_info["server"]["app_tpl"]);
|
||||||
|
$t = new Template($phpgw->common->get_tpl_dir("addressbook"));
|
||||||
$t->set_file(array("delete" => "delete.tpl"));
|
$t->set_file(array("delete" => "delete.tpl"));
|
||||||
|
|
||||||
|
|
||||||
if ($confirm != "true") {
|
if ($confirm != "true") {
|
||||||
$phpgw->db->query("select owner from addressbook where id='$ab_id'");
|
$fields = $this->read($ab_id, array("owner" => $owner));
|
||||||
$phpgw->db->next_record();
|
#$phpgw->db->query("select owner from addressbook where id='$ab_id'");
|
||||||
|
#$phpgw->db->next_record();
|
||||||
|
|
||||||
if ($phpgw->db->f("ab_owner") != $phpgw_info["user"]["account_id"]) {
|
if ($fielfs["owner"] != $phpgw_info["user"]["account_id"]) {
|
||||||
@Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/addressbook/"));
|
@Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/addressbook/"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,7 +20,8 @@
|
|||||||
$phpgw_info["flags"]["enable_addressbook_class"] = True;
|
$phpgw_info["flags"]["enable_addressbook_class"] = True;
|
||||||
include("../header.inc.php");
|
include("../header.inc.php");
|
||||||
|
|
||||||
$t = new Template($phpgw_info["server"]["app_tpl"]);
|
#$t = new Template($phpgw_info["server"]["app_tpl"]);
|
||||||
|
$t = new Template($phpgw->common->get_tpl_dir("addressbook"));
|
||||||
$t->set_file(array( "edit" => "edit.tpl"));
|
$t->set_file(array( "edit" => "edit.tpl"));
|
||||||
|
|
||||||
if (! $ab_id) {
|
if (! $ab_id) {
|
||||||
|
@ -17,7 +17,8 @@
|
|||||||
"enable_nextmatchs_class" => True);
|
"enable_nextmatchs_class" => True);
|
||||||
include("../header.inc.php");
|
include("../header.inc.php");
|
||||||
|
|
||||||
$t = new Template($phpgw_info["server"]["app_tpl"]);
|
#$t = new Template($phpgw_info["server"]["app_tpl"]);
|
||||||
|
$t = new Template($phpgw->common->get_tpl_dir("addressbook"));
|
||||||
$t->set_file(array( "addressbook_header" => "header.tpl",
|
$t->set_file(array( "addressbook_header" => "header.tpl",
|
||||||
"column" => "column.tpl",
|
"column" => "column.tpl",
|
||||||
"row" => "row.tpl",
|
"row" => "row.tpl",
|
||||||
@ -48,7 +49,7 @@
|
|||||||
$offset = $phpgw_info["user"]["preferences"]["common"]["maxmatchs"];
|
$offset = $phpgw_info["user"]["preferences"]["common"]["maxmatchs"];
|
||||||
|
|
||||||
if ($filter == "none") { $filter = ""; }
|
if ($filter == "none") { $filter = ""; }
|
||||||
else { $filter = "access=$filter"; }
|
if ($filter != "" ) { $filter = "access=$filter"; }
|
||||||
|
|
||||||
$entries = $this->read($start,$offset,$columns_to_display,$query,$filter,$sort,$order);
|
$entries = $this->read($start,$offset,$columns_to_display,$query,$filter,$sort,$order);
|
||||||
|
|
||||||
|
@ -22,7 +22,8 @@
|
|||||||
|
|
||||||
include("../header.inc.php");
|
include("../header.inc.php");
|
||||||
|
|
||||||
$t = new Template($phpgw_info["server"]["app_tpl"]);
|
#$t = new Template($phpgw_info["server"]["app_tpl"]);
|
||||||
|
$t = new Template($phpgw->common->get_tpl_dir("addressbook"));
|
||||||
$t->set_file(array( "view" => "view.tpl"));
|
$t->set_file(array( "view" => "view.tpl"));
|
||||||
|
|
||||||
$this = CreateObject("phpgwapi.contacts");
|
$this = CreateObject("phpgwapi.contacts");
|
||||||
|
Loading…
Reference in New Issue
Block a user