This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/admin/deleteAny.php
2005-03-12 17:13:08 +00:00

69 lines
1.8 KiB
PHP

<?php
/****************************************************/
/* code to delete versions, families and categories */
/****************************************************/
/*
* application environment
*/
include("path.php");
include(BASE."include/incl.php");
include(BASE."include/category.php");
include(BASE."include/application.php");
include(BASE."include/mail.php");
if($_REQUEST['confirmed'] != "yes")
{
// ask for confirmation
// could do some Real Damage if someone accidently hits the delete button on the main category :)
//
// perhaps we can do this with some javascript, popup
errorpage("Not confirmed");
}
if($_REQUEST['what'])
{
switch($_REQUEST['what'])
{
case "category":
// delete category and the apps in it
$oCategory = new Category($_REQUEST['catId']);
if( !$_SESSION['current']->hasPriv("admin") )
{
errorpage();
} else
{
$oCategory->delete();
redirect(BASE."appbrowse.php");
}
break;
case "appFamily":
// delete app family & all its versions
$oApp = new Application($_REQUEST['appId']);
if( !$_SESSION['current']->hasPriv("admin") )
{
errorpage();
} else
{
$oApp->delete();
redirect(BASE."appbrowse.php");
}
break;
case "appVersion":
// delete a version
$oVersion = new Version($_REQUEST['versionId']);
if( !$_SESSION['current']->isSuperMaintainer($oVersion->iAppId)
&& !$_SESSION['current']->hasPriv("admin") )
{
errorpage();
} else
{
$oVersion->delete();
redirect(BASE."appview.php?appId=".$_REQUEST['appId']);
}
break;
}
}
?>