server()) { metaRefresh("../login.php"); exit; } // check if admin has submited delete operation if (isset($_POST['submit'])) { // delete profile if (!delAccountProfile($_POST['del'], $_POST['type'])) { metaRefresh('profilemain.php?deleteScope=' . $_POST['type'] . '&deleteFailed=' . $_POST['del']); exit(); } else { metaRefresh('profilemain.php?deleteScope=' . $_POST['type'] . '&deleteSucceeded=' . $_POST['del']); exit(); } } // check if admin has aborted delete operation if (isset($_POST['abort'])) { metaRefresh('profilemain.php'); exit; } // print standard header include '../main_header.php'; echo "
\n"; echo "
\n"; $type = $_GET['type']; $container = new htmlTable(); $container->addElement(new htmlOutputText(_("Do you really want to delete this profile?")), true); $container->addElement(new htmlSpacer(null, '10px'), true); $subContainer = new htmlTable(); $subContainer->addElement(new htmlOutputText(_("Profile name") . ': ')); $subContainer->addElement(new htmlOutputText($_GET['del']), true); $container->addElement($subContainer, true); $container->addElement(new htmlSpacer(null, '10px'), true); $buttonContainer = new htmlTable(); $buttonContainer->addElement(new htmlButton('submit', _("Ok"))); $buttonContainer->addElement(new htmlButton('abort', _("Cancel"))); $buttonContainer->addElement(new htmlHiddenInput('type', $type)); $buttonContainer->addElement(new htmlHiddenInput('del', $_GET['del'])); $container->addElement($buttonContainer); $tabindex = 1; parseHtml(null, $container, array(), false, $tabindex, 'user'); echo "
\n"; echo "
"; include '../main_footer.php';