server()) { metaRefresh("../login.php"); exit; } // Write $_POST variables to $_GET when form was submitted via post if(isset($_POST['type'])) { $_GET = $_POST; if($_POST['pdfname'] == '') { unset($_GET['pdfname']); } } // Abort and go back to main pdf structure page if(isset($_GET['abort'])) { metarefresh('pdfmain.php'); exit; } // Check if pdfname is valid, then save current structure to file and go to // main pdf structure page elseif(isset($_GET['submit'])) { if(!isset($_GET['pdfname']) || !preg_match('/[a-zA-Z0-9\-\_\.]+/',$_GET['pdfname'])) { StatusMessage('ERROR',_('PDF-structure name not valid'),_('The name for that PDF-structure you submitted is not valid. A valid name must constist at least of one of the following characters \'a-z\',\'A-Z\',\'0-9\',\'_\',\'-\',\'.\'.')); } else { savePDFStructureDefinitions($_GET['type'],$_GET['pdfname'] . '.xml'); metarefresh('pdfmain.php'); exit; } } // Add a new section or static text elseif(isset($_GET['add'])) { // Check if name for new section is specified when needed if($_GET['add_type'] == 'section' && $_GET['section_type'] == 'text' && (!isset($_GET['section_text']) || $_GET['section_text'] == '')) { StatusMessage('ERROR',_('No section text specified'),_('The headline for a new section must contain at least one character.')); } // Check if text for static text field is specified elseif($_GET['add_type'] == 'text' && (!isset($_GET['text_text']) || $_GET['text_text'] == '')) { StatusMessage('ERROR',_('No static text specified'),_('The static text must contain at least one character.')); } else { // Add a new section if($_GET['add_type'] == 'section') { $attributes = array(); // Add a new section with user headline if($_GET['section_type'] == 'text') { $attributes['NAME'] = $_GET['section_text']; } // Add a new section with a module value headline elseif($_GET['section_type'] == 'item') { $attributes['NAME'] = '_' . $_GET['section_item']; } $entry = array(array('tag' => 'SECTION','type' => 'open','level' => '2','attributes' => $attributes),array('tag' => 'SECTION','type' => 'close','level' => '2')); } // Add new static text field elseif($_GET['add_type'] == 'text') { $entry = array(array('tag' => 'TEXT','type' => 'complete','level' => '2','value' => $_GET['text_text'])); } // Insert new field in structure array_splice($_SESSION['currentPDFStructure'],$_GET['add_position'],0,$entry); } } // Add a new value field elseif(isset($_GET['add_field'])) { // Get available modules $modules = explode(',',$_GET['modules']); $fields = array(); // Search each module for selected values foreach($modules as $module) { if(isset($_GET[$module])) { foreach($_GET[$module] as $field) { // Create ne value entry $fields[] = array('tag' => 'ENTRY','type' => 'complete','level' => '3','attributes' => array('NAME' => $module . '_' . $field)); } } } if(count($fields) > 0) { $pos = 0; // Find begin section to insert into while($pos < $_GET['section']) { next($_SESSION['currentPDFStructure']); $pos++; } $current = next($_SESSION['currentPDFStructure']); $pos++; // End of section to insert into while($current && $current['tag'] != 'SECTION' && $current['type'] != 'close') { $current = next($_SESSION['currentPDFStructure']); $pos++; } // Insert new entry before closing section tag array_splice($_SESSION['currentPDFStructure'],$pos,0,$fields); } } // Change section headline elseif(isset($_GET['change'])) { $alter = explode('_',$_GET['change']); $newvalue = $_GET['section_' . $alter[0]]; if($alter[1] == 'item') { $newvalue = '_' . $newvalue; } $_SESSION['currentPDFStructure'][$alter[0]]['attributes']['NAME'] = $newvalue; } // Remove section, static text or value entry from structure elseif(isset($_GET['remove'])) { $start = 0; // Find element to remove while($start < $_GET['remove']) { next($_SESSION['currentPDFStructure']); $start++; } $remove = current($_SESSION['currentPDFStructure']); // We have a section to remove if($remove['tag'] == "SECTION") { $end = $start; $current = next($_SESSION['currentPDFStructure']); $end++; // Find end of section to remove while($current && $current['tag'] != 'SECTION' && $current['type'] != 'close') { $current = next($_SESSION['currentPDFStructure']); $end++; } // Remove complete section with all value entries in it from structure array_splice($_SESSION['currentPDFStructure'],$start,$end - $start + 1); } // We have a value entry to remove elseif($remove['tag'] == "ENTRY") { array_splice($_SESSION['currentPDFStructure'],$start,1); } // We hava a static text to remove elseif($remove['tag'] == "TEXT") { array_splice($_SESSION['currentPDFStructure'],$start,1); } } // Move a section, static text or value entry upwards elseif(isset($_GET['up'])) { $tmp = $_SESSION['currentPDFStructure'][$_GET['up']]; $prev = $_SESSION['currentPDFStructure'][$_GET['up'] - 1]; // We have a section or static text to move if($tmp['tag'] == 'SECTION' || $tmp['tag'] == 'TEXT') { $pos = 0; $borders = array(); $current = current($_SESSION['currentPDFStructure']); // Add borders of sections and static text entry to array if($current['tag'] == 'SECTION') { $borders[$current['type']][] = $pos; } elseif($current['tag'] == 'TEXT') { $borders['open'][] = $pos; $borders['close'][] = $pos; } // Find all sections and statci text fields before the section or static // text entry to move upwards while($pos < $_GET['up']) { $current = next($_SESSION['currentPDFStructure']); $pos++; if($current['tag'] == 'SECTION') { $borders[$current['type']][] = $pos; } elseif($current['tag'] == 'TEXT') { $borders['open'][] = $pos; $borders['close'][] = $pos; } } // Move only when not topmost element if(count($borders['close']) > 0) { // We have a section to move up if($current['tag'] == 'SECTION') { $current = next($_SESSION['currentPDFStructure']); $pos++; // Find end of section to move while($current && $current['tag'] != 'SECTION' && $current['type'] != 'close') { $current = next($_SESSION['currentPDFStructure']); $pos++; } $borders['close'][] = $pos; } // Calculate the entries to move and move them $cut_start = $borders['open'][count($borders['open']) - 1]; $cut_count = $borders['close'][count($borders['close']) - 1] - $borders['open'][count($borders['open']) - 1] + 1; $insert_pos = $borders['open'][count($borders['open']) - 2]; $tomove = array_splice($_SESSION['currentPDFStructure'],$cut_start,$cut_count); array_splice($_SESSION['currentPDFStructure'],$insert_pos,0,$tomove); } } // We have a value entry to move; move it only if its not the topmost // entry in this section elseif($tmp['tag'] == 'ENTRY' && $prev['tag'] == 'ENTRY') { $_SESSION['currentPDFStructure'][$_GET['up']] = $prev; $_SESSION['currentPDFStructure'][$_GET['up'] - 1] = $tmp; } } // Move a section, static text field or value entry downwards elseif(isset($_GET['down'])) { $tmp = $_SESSION['currentPDFStructure'][$_GET['down']]; $next = $_SESSION['currentPDFStructure'][$_GET['down'] + 1]; // We have a section or static text to move if($tmp['tag'] == 'SECTION' || $tmp['tag'] == 'TEXT') { $pos = 0; $current = current($_SESSION['currentPDFStructure']); // Find section or static text entry to move while($pos < $_GET['down']) { $current = next($_SESSION['currentPDFStructure']); $pos++; } $borders = array(); // We have a section to move if($current['tag'] == 'SECTION'){ $borders[$current['type']][] = $pos; $current = next($_SESSION['currentPDFStructure']); $pos++; // Find end of section to move while($current && $current['tag'] != 'SECTION' && $current['type'] != 'close') { $current = next($_SESSION['currentPDFStructure']); $pos++; } $borders['close'][] = $pos; } // We have a static text entry to move elseif($current['tag'] == 'TEXT') { $borders['open'][] = $pos; $borders['close'][] = $pos; } $current = next($_SESSION['currentPDFStructure']); $pos++; // Find next section or static text entry in structure if($current) { // Next is a section if($current['tag'] == 'SECTION') { $borders[$current['type']][] = $pos; $current = next($_SESSION['currentPDFStructure']); $pos++; // Find end of this section while($current && $current['tag'] != 'SECTION' && $current['type'] != 'close') { if($current['tag'] == 'SECTION') { $borders[$current['type']][] = $pos; } $current = next($_SESSION['currentPDFStructure']); $pos++; } } // Next is static text entry elseif($current['tag'] == 'TEXT') { $borders['open'][] = $pos; } $borders['close'][] = $pos; } // Move only downwars if not bottenmost element of this structure if(count($borders['open']) > 1) { // Calculate entries to move and move them $cut_start = $borders['open'][count($borders['open']) - 1]; $cut_count = $borders['close'][count($borders['close']) - 1] - $borders['open'][count($borders['open']) - 1] + 1; $insert_pos = $borders['open'][count($borders['open']) - 2]; $tomove = array_splice($_SESSION['currentPDFStructure'],$cut_start,$cut_count); array_splice($_SESSION['currentPDFStructure'],$insert_pos,0,$tomove); } } // We have a value entry to move; move it only if it is not the bottmmost // element of this section. elseif($tmp['tag'] == 'ENTRY' && $next['tag'] == 'ENTRY') { $_SESSION['currentPDFStructure'][$_GET['down']] = $_SESSION['currentPDFStructure'][$_GET['down'] + 1]; $_SESSION['currentPDFStructure'][$_GET['down'] + 1] = $tmp; } } // TODO implement page handling elseif(isset($_POST['page'])) { if($_POST['logoFile'] != 'printLogo.jpg' && $_POST['logoFile'] != $_SESSION['currentPageDefinitions']['filename']) { $_SESSION['currentPageDefinitions']['filename'] = $_POST['logoFile']; } if($_POST['logo-width'] != '50' && $_POST['logo-width'] != $_SESSION['currentPageDefinitions']['logo-width']) { if($_POST['logo-width'] <= 50 && $_POST['logo-width'] > 0) { $_SESSION['currentPageDefinitions']['logo-width'] = $_POST['logo-width']; } } if($_POST['logo-height'] != '20' && $_POST['logo-height'] != $_SESSION['currentPageDefinitions']['logo-height']) { if($_POST['logo-height'] <= 20 && $_POST['logo-height'] > 0) { $_SESSION['currentPageDefinitions']['logo-height'] = $_POST['logo-height']; } } if(isset($_POST['logo-max']) && !isset($_SESSION['currentPageDefinitions']['logo-max'])) { $_SESSION['currentPageDefinitions']['logo-max'] = true; } if($_POST['headline'] != 'LDAP Account Manager' && $_POST['headline'] != $_SESSION['currentPageDefinitions']['headline']) { $_SESSION['currentPageDefinitions']['headline'] = str_replace('<','',str_replace('>','',$_POST['headline'])); } if($_POST['margin-top'] != '10.0' && $_SESSION['currentPageDefinitions']['margin-top'] != $_POST['margin-top']) { $_SESSION['currentPageDefinitions']['margin-top'] = $_POST['margin-top']; } if($_POST['margin-bottom'] != '20.0' && $_SESSION['currentPageDefinitions']['margin-bottom'] != $_POST['margin-bottom']) { $_SESSION['currentPageDefinitions']['margin-bottom'] = $_POST['margin-bottom']; } if($_POST['margin-left'] != '10.0' && $_SESSION['currentPageDefinitions']['margin-left'] != $_POST['margin-left']) { $_SESSION['currentPageDefinitions']['margin-left'] = $_POST['margin-left']; } if($_POST['margin-right'] != '10.0' && $_SESSION['currentPageDefinitions']['margin-right'] != $_POST['margin-right']) { $_SESSION['currentPageDefinitions']['margin-right'] = $_POST['margin-right']; } if(isset($_POST['defaults'])) { foreach($_POST['defaults'] as $default) { switch($default) { case 'logoFile': unset($_SESSION['currentPageDefinitions']['filename']); break; case 'logoSize': unset($_SESSION['currentPageDefinitions']['logo-width']); unset($_SESSION['currentPageDefinitions']['logo-height']); unset($_SESSION['currentPageDefinitions']['logo-max']); break; case 'headline': unset($_SESSION['currentPageDefinitions']['headline']); break; case 'margin-top': unset($_SESSION['currentPageDefinitions']['margin-top']); break; case 'margin-bottom': unset($_SESSION['currentPageDefinitions']['margin-bottom']); break; case 'margin-left': unset($_SESSION['currentPageDefinitions']['margin-left']); break; case 'margin-right': unset($_SESSION['currentPageDefinitions']['margin-right']); break; default: break; } } if(count($_SESSION['currentPageDefinitions']['margin']) == 0) { unset($_SESSION['currentPageDefinitions']['margin']); } } } // Load PDF structure from file if it is not defined in session if(!isset($_SESSION['currentPDFStructure'])) { // Load structure file to be edit if($_GET['edit']) { $load = loadPDFStructureDefinitions($_GET['type'],$_GET['edit']); $_SESSION['currentPDFStructure'] = $load['structure']; $_SESSION['currentPageDefinitions'] = $load['page_definitions']; $_GET['pdfname'] = substr($_GET['edit'],0,strlen($_GET['edit']) - 4); } // Load default structure file when creating a new one else { $load = loadPDFStructureDefinitions($_GET['type']); $_SESSION['currentPDFStructure'] = $load['structure']; $_SESSION['currentPageDefinitions'] = $load['page_definitions']; } } // Load available fields from modules when not set in session if(!isset($_SESSION['availablePDFFields'])) { $_SESSION['availablePDFFields'] = getAvailablePDFFields($_GET['type']); } // Create the values for the dropdown boxes for section headline defined by // value entries and fetch all available modules $modules = array(); $section_items_array = array(); $section_items = ''; foreach($_SESSION['availablePDFFields'] as $module => $values) { $modules[] = $module; foreach($values as $attribute) { $section_items_array[] = $module . '_' . $attribute; $section_items .= "\t\t\t\t\t\t\t\t\t\t\t\t\n"; } } $modules = join(',',$modules); $logoFiles = getAvailableLogos(); $logos = '\n"; foreach($logoFiles as $logoFile) { $logos .= "\t\t\t\t\t\t\t\t\t\t\t\n"; } // print header echo $_SESSION['header']; // TODO Change enctype of form ?> LDAP Account Manager
:

>

:
:
:
:
:

' . _('Beginning') . "\n"; // Print every entry in the current structure foreach($_SESSION['currentPDFStructure'] as $key => $entry) { // Create the up/down/remove links $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"; // We have a new section to start if($entry['tag'] == "SECTION" && $entry['type'] == "open") { $name = $entry['attributes']['NAME']; ?> ' . $section_headline . "\n"; ?> ' . _('Static text') . "\n"; ?>
\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) { ?>