egroupware/addressbook/delete.php

63 lines
2.5 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
/**************************************************************************\
* phpGroupWare - addressbook *
* http://www.phpgroupware.org *
* Written by Joseph Engo <jengo@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'] = array(
'noheader' => True,
'nonavbar' => True,
'currentapp' => 'addressbook'
);
include('../header.inc.php');
if (! $ab_id)
{
Header('Location: ' . $phpgw->link('/addressbook/index.php'));
}
2000-08-18 05:24:22 +02:00
$this = CreateObject('phpgwapi.contacts');
$fields = $this->read_single_entry($ab_id,array("owner" => "owner"));
//$record_owner = $fields[0]["owner"];
if (! $this->check_perms($this->grants[$fields[0]['owner']],PHPGW_ACL_DELETE) && $fields[0]['owner'] != $phpgw_info['user']['account_id'])
{
Header('Location: '
2001-03-29 17:39:10 +02:00
. $phpgw->link('/addressbook/index.php',"cd=16&order=$order&sort=$sort&filter=$filter&start=$start&query=$query&cat_id=$cat_id"));
$phpgw->common->phpgw_exit();
}
$t = new Template($phpgw->common->get_tpl_dir("addressbook"));
$t->set_file(array("delete" => "delete.tpl"));
2001-02-17 11:35:10 +01:00
if ($confirm != "true") {
$phpgw->common->phpgw_header();
echo parse_navbar();
2001-02-17 11:35:10 +01:00
$t->set_var(lang_sure,lang("Are you sure you want to delete this entry ?"));
2001-03-28 14:51:59 +02:00
$t->set_var(no_link,$phpgw->link("/addressbook/index.php",
2001-03-29 17:39:10 +02:00
"ab_id=$ab_id&order=$order&sort=$sort&filter=$filter&start=$start&query=$query&cat_id=$cat_id"));
2001-02-17 11:35:10 +01:00
$t->set_var(lang_no,lang("NO"));
2001-03-28 14:51:59 +02:00
$t->set_var(yes_link,$phpgw->link("/addressbook/delete.php",
"ab_id=$ab_id&confirm=true&order=$order&sort=$sort&filter=$filter&start=$start&query=$query&cat_id=$cat_id"));
2001-02-17 11:35:10 +01:00
$t->set_var(lang_yes,lang("YES"));
$t->pparse("out","delete");
$phpgw->common->phpgw_footer();
} else {
2001-02-17 11:35:10 +01:00
$this->account_id=$phpgw_info["user"]["account_id"];
$this->delete($ab_id);
2001-03-28 14:51:59 +02:00
@Header("Location: " . $phpgw->link("/addressbook/index.php",
2001-03-29 17:39:10 +02:00
"cd=16&order=$order&sort=$sort&filter=$filter&start=$start&query=$query&cat_id=$cat_id"));
}
2000-09-05 05:14:08 +02:00
?>