1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
<?php
# IRM - The Information Resource Manager
# Copyright (C) 1999 Yann Ramin
#
# 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.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License (in file COPYING) for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
################################################################################
include("../include/irm.inc");
require_once 'lib/Config.php';
require_once 'include/i18n.php';
AuthCheck("tech");
$DB = Config::Database();
$qID = $DB->getTextValue($ID);
$query = "SELECT * FROM software WHERE ID=$qID";
$result = $DB->getRow($query);
$name = $result['name'];
$class = $result["class"];
$platform = $result["platform"];
#$installations = Count_installations($ID);
#$licenses = Count_licenses($ID);
if ($force==1)
{
$qID = $DB->getTextValue($ID);
$query = "DELETE FROM software WHERE (ID = $qID)";
$DB->query($query);
$query = "DELETE FROM inst_software WHERE (sID = $qID)";
$DB->query($query);
$query = "DELETE FROM templ_inst_software WHERE (sID = $qID)";
$DB->query($query);
$query = "DELETE FROM software_bundles
WHERE (sID = $qID)";
$DB->query($query);
$query = "DELETE FROM software_licenses
WHERE (sID = $qID)";
$DB->query($query);
header("Location: ".Config::AbsLoc("users/software-index.php"));
}
else
{
commonHeader(_("Software") . " - " . _("Deleted"));
print " <table align=right width=50%> <tr BGCOLOR=#DDDDDD><td>";
__("Name");
PRINT "</td><td>$name</td></tr> <tr BGCOLOR=#DDDDDD><td>";
__("Class");
PRINT "</td><td>$class</td></tr> <tr BGCOLOR=#DDDDDD><td>";
_("Platform");
PRINT "</td><td>$platform</td></tr> <tr BGCOLOR=#DDDDDD><td>";
__("Installations");
PRINT "</td><td>$installations</td></tr> <tr BGCOLOR=#DDDDDD><td>";
__("Licenses");
PRINT "</td><td>$licenses</td></tr> <tr BGCOLOR=#DDDDDD><td>";
__("Bundles");
PRINT "</TD><TD>$bundles</TD></tr> </table>";
print "<p align=left>";
__("Deleting this package will result in the removal of all Associated Records. Are you sure you want to delete this package. Remember you will loose the following Information about this package:<ul><li>Installations<li>Licenses <li>Comments<li>Templates<li>Bundles. </ul>");
PRINT "<BR> <a href=\"".$_SESSION['_sess_prevpage']."\">
<font face=\"arial,helvetica\" size=+2>No</font></a>
";
// Effectively ignore the current page in the "history"
$_SESSION['_sess_currpage'] = $_SESSION['_sess_prevpage'];
PRINT "<a href=\"$REQUEST_URI?ID=$ID&force=1\">
<font face=\"arial,helvetica\" size=+2>Delete</a> </font>
<BR CLEAR=ALL>";
}
commonFooter();
|