server()) { metaRefresh("../login.php"); exit; } if(isset($_POST['type'])) { $_GET = $_POST; } if(isset($_GET['abort'])) { unset($_SESSION['currentPDFStructure']); unset($_SESSION['availablePDFFields']); session_unregister('currentPDFStructure'); session_unregister('availablePDFFields'); metarefresh('pdfmain.php'); exit; } elseif(isset($_GET['submit'])) { // TODO implement save of PDF structure unset($_SESSION['currentPDFStructure']); unset($_SESSION['availablePDFFields']); session_unregister('currentPDFStructure'); session_unregister('availablePDFFields'); metarefresh('pdfmain.php'); exit; } elseif(isset($_GET['add_section'])) { $attributes = array(); if($_GET['section_type'] == 'text') { $attributes['NAME'] = $_GET['section_text']; } elseif($_GET['section_type'] == 'item') { $attributes['NAME'] = '_' . $_GET['section_item']; } $newSectionStart = array('tag' => 'SECTION','type' => 'open','level' => '2','attributes' => $attributes); $newSectionEnd = array('tag' => 'SECTION','type' => 'close','level' => '2'); $_SESSION['currentPDFStructure'][] = $newSectionStart; $_SESSION['currentPDFStructure'][] = $newSectionEnd; } elseif(isset($_GET['add_field'])) { $modules = explode(',',$_GET['modules']); $fields = array(); foreach($modules as $module) { if(isset($_GET[$module])) { foreach($_GET[$module] as $field) { $fields[] = array('tag' => 'ENTRY','type' => 'complete','level' => '3','attributes' => array('NAME' => $module . '_' . $field)); } } } if(count($fields) > 0) { $pos = 0; while($pos < $_GET['section']) { next($_SESSION['currentPDFStructure']); $pos++; } $current = next($_SESSION['currentPDFStructure']); $pos++; while($current && $current['tag'] != 'SECTION' && $current['type'] != 'close') { $current = next($_SESSION['currentPDFStructure']); $pos++; } array_splice($_SESSION['currentPDFStructure'],$pos,0,$fields); } } elseif(isset($_GET['remove'])) { $start = 0; while($start < $_GET['remove']) { next($_SESSION['currentPDFStructure']); $start++; } $remove = current($_SESSION['currentPDFStructure']); if($remove['tag'] == "SECTION") { $end = $start; $current = next($_SESSION['currentPDFStructure']); $end++; while($current && $current['tag'] != 'SECTION' && $current['type'] != 'close') { $current = next($_SESSION['currentPDFStructure']); $end++; } echo "start: $start\nend: $end\n"; array_splice($_SESSION['currentPDFStructure'],$start,$end - $start + 1); } elseif($remove['tag'] == "ENTRY") { array_splice($_SESSION['currentPDFStructure'],$start,1); } elseif($remove['tag'] == "TEXT") { array_splice($_SESSION['currentPDFStructure'],$start,1); } } elseif(isset($_GET['up'])) { $tmp = $_SESSION['currentPDFStructure'][$_GET['up']]; $prev = $_SESSION['currentPDFStructure'][$_GET['up'] - 1]; if($tmp['tag'] == 'SECTION') { } elseif($tmp['tag'] == 'ENTRY' && $prev['tag'] == 'ENTRY') { $_SESSION['currentPDFStructure'][$_GET['up']] = $_SESSION['currentPDFStructure'][$_GET['up'] - 1]; $_SESSION['currentPDFStructure'][$_GET['up'] - 1] = $tmp; } elseif($tmp['tag'] == 'TEXT') { } } elseif(isset($_GET['down'])) { $tmp = $_SESSION['currentPDFStructure'][$_GET['down']]; $next = $_SESSION['currentPDFStructure'][$_GET['down'] + 1]; if($tmp['tag'] == 'SECTION') { } elseif($tmp['tag'] == 'ENTRY' && $next['tag'] == 'ENTRY') { $_SESSION['currentPDFStructure'][$_GET['down']] = $_SESSION['currentPDFStructure'][$_GET['down'] + 1]; $_SESSION['currentPDFStructure'][$_GET['down'] + 1] = $tmp; } elseif($tmp['tag'] == 'TEXT') { } } if(!isset($_SESSION['currentPDFStructure'])) { if($_GET['edit']) { $_SESSION['currentPDFStructure'] = loadPDFStructureDefinitions($_GET['type'],$_GET['edit']); } else { $_SESSION['currentPDFStructure'] = loadPDFStructureDefinitions($_GET['type']); } } if(!isset($_SESSION['availablePDFFields'])) { $_SESSION['availablePDFFields'] = getAvailablePDFFields($_GET['type']); } $modules = array(); $section_items = ''; foreach($_SESSION['availablePDFFields'] as $module => $values) { $modules[] = $module; foreach($values as $attribute) { $section_items .= "\t\t\t\t\t\t\t\t\t\t\t\t\n"; } } $modules = join(',',$modules); // print header echo $_SESSION['header']; ?> LDAP Account Manager
$entry) { $links = "\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n"; $uplink = 'pdfpage.php?type=' . $_GET['type'] . '&up=' . $i . (($_GET['edit']) ? 'edit=' . $_GET['edit'] : ''); $downlink = 'pdfpage.php?type=' . $_GET['type'] . '&down=' . urlencode($entry['tag']) . (($_GET['edit']) ? 'edit=' . $_GET['edit'] : ''); // We have a new section to start if($entry['tag'] == "SECTION" && $entry['type'] == "open") { $name = $entry['attributes']['NAME']; if(preg_match("/^\_[a-zA-Z\_]+/",$name)) { $section_headline = substr($name,1); } else { $section_headline = $name; } ?>
\n\t\t\t\t\t\t\t\t\t\t" . _('Up') . "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" . _('Down') . "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" . _('Remove') . "\n\t\t\t\t\t\t\t\t\t

 

:
 
"> ">  
$fields) { ?>