server()) { metaRefresh("../login.php"); exit; } // check if admin has submited delete operation if (isset($_POST['submit'])) { // delete user profile if(!deletePDFStructureDefinition($_POST['type'],$_POST['delete'])) { metaRefresh('pdfmain.php?deleteScope=' . $_POST['type'] . '&deleteFailed=' . $_POST['delete']); exit(); } else { metaRefresh('pdfmain.php?deleteScope=' . $_POST['type'] . '&deleteSucceeded=' . $_POST['delete']); exit(); } } // check if admin has aborted delete operation if (isset($_POST['abort'])) { metaRefresh('pdfmain.php'); exit; } // print standard header include '../main_header.php'; echo "
\n"; echo "
\n"; // check if right type was given $type = $_GET['type']; $container = new htmlTable(); $container->addElement(new htmlOutputText(_("Do you really want to delete this PDF structure?")), true); $container->addElement(new htmlSpacer(null, '10px'), true); $templateContainer = new htmlTable(); $templateContainer->addElement(new htmlOutputText(_('Account type'))); $templateContainer->addElement(new htmlSpacer('10px', null)); $templateContainer->addElement(new htmlOutputText(getTypeAlias($_GET['type'])), true); $templateContainer->addElement(new htmlOutputText(_('Name'))); $templateContainer->addElement(new htmlSpacer('10px', null)); $templateContainer->addElement(new htmlOutputText($_GET['delete']), true); $container->addElement($templateContainer, true); $container->addElement(new htmlSpacer(null, '10px'), true); $buttonContainer = new htmlTable(); $buttonContainer->addElement(new htmlButton('submit', _("Delete"))); $buttonContainer->addElement(new htmlButton('abort', _("Cancel"))); $buttonContainer->addElement(new htmlHiddenInput('type', $_GET['type'])); $buttonContainer->addElement(new htmlHiddenInput('delete', $_GET['delete'])); $container->addElement($buttonContainer); $tabindex = 1; parseHtml(null, $container, array(), false, $tabindex, 'user'); echo "
\n"; echo '
'; include '../main_footer.php';