. * * For more information, contact Colosa Inc, 2566 Le Jeune Rd., * Coral Gables, FL, 33134, USA, or email info@colosa.com. * */ /* Permissions */ switch ($RBAC->userCanAccess('PM_CASES')) { case -2: G::SendTemporalMessage('ID_USER_HAVENT_RIGHTS_SYSTEM', 'error', 'labels'); G::header('location: ../login/login'); die; break; case -1: G::SendTemporalMessage('ID_USER_HAVENT_RIGHTS_PAGE', 'error', 'labels'); G::header('location: ../login/login'); die; break; } /* Includes */ require_once ( "classes/model/AppDocumentPeer.php" ); G::LoadClass('case'); /* GET , POST & $_SESSION Vars */ /* Process the info */ $oAppDocument = new AppDocument(); $oAppDocument->remove($_GET['DOC']); /* Redirect */ G::header('location: ' . $_SERVER['HTTP_REFERER']);