egroupware/admin/deleteapplication.php

54 lines
1.9 KiB
PHP
Raw Normal View History

2000-08-19 21:48:29 +02:00
<?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"] = array("noheader" => True, "nonavbar" => True);
2000-08-19 21:48:29 +02:00
if (! $app_name)
Header("Location: " . $phpgw->link("applications.php"));
2000-09-25 23:13:52 +02:00
$phpgw_info["flags"]["disable_message_class"] = True;
$phpgw_info["flags"]["disable_send_class"] = True;
$phpgw_info["flags"]["currentapp"] = "admin";
2000-08-19 21:48:29 +02:00
include("../header.inc.php");
if ($confirm) {
$phpgw->db->query("delete from applications where app_name='$app_name'");
Header("Location: " . $phpgw->link("applications.php"));
exit;
}
$phpgw->common->header();
$phpgw->common->navbar();
?>
<center>
<table border=0 with=65%>
<tr colspan=2>
<td align=center>
2000-09-07 22:49:55 +02:00
<?php echo lang("Are you sure you want to delete this application ?"); ?>
2000-08-19 21:48:29 +02:00
<td>
</tr>
<tr>
<td>
2000-09-07 22:49:55 +02:00
<a href="<?php echo $phpgw->link("applications.php") . "\">" . lang("No") . "</a>"; ?>
2000-08-19 21:48:29 +02:00
</td>
<td>
2000-09-07 22:49:55 +02:00
<a href="<?php echo $phpgw->link("deleteapplication.php","app_name=" . urlencode($app_name) . "&confirm=True") . "\">" . lang("Yes") . "</a>"; ?>
2000-08-19 21:48:29 +02:00
</td>
</tr>
</table>
</center>
2000-09-25 23:13:52 +02:00
<?php
2000-08-19 21:48:29 +02:00
include($phpgw_info["server"]["api_dir"] . "/footer.inc.php");
2000-09-25 23:13:52 +02:00
?>