diff --git a/lam/templates/pdfedit/pdfmain.php b/lam/templates/pdfedit/pdfmain.php index 6edd738c..41268671 100644 --- a/lam/templates/pdfedit/pdfmain.php +++ b/lam/templates/pdfedit/pdfmain.php @@ -39,7 +39,6 @@ if (!$_SESSION['ldap'] || !$_SESSION['ldap']->server()) { exit; } - // check if user has pressed submit or abort button if ($_POST['forward'] == "yes") { // on abort go back to main page diff --git a/lam/templates/pdfedit/pdfpage.php b/lam/templates/pdfedit/pdfpage.php index abe8f3cc..f6306fac 100644 --- a/lam/templates/pdfedit/pdfpage.php +++ b/lam/templates/pdfedit/pdfpage.php @@ -23,10 +23,10 @@ $Id$ */ -include_once("../../lib/pdfstruct.inc"); -include_once("../../lib/ldap.inc"); -include_once("../../lib/config.inc"); -include_once("../../lib/modules.inc"); +include_once('../../lib/pdfstruct.inc'); +include_once('../../lib/ldap.inc'); +include_once('../../lib/config.inc'); +include_once('../../lib/modules.inc'); include_once('../../lib/xml_parser.inc'); // start session @@ -41,14 +41,141 @@ if (!$_SESSION['ldap'] || !$_SESSION['ldap']->server()) { exit; } -if($_GET['edit']) { - $currentStructure = loadPDFStructureDefinitions($_GET['type'],$_GET['edit']); -} -else { - $currentStructure = loadPDFStructureDefinitions($_GET['type']); +if(isset($_POST['type'])) { + $_GET = $_POST; } -$availableFields = getAvailablePDFFields($_GET['type']); +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']; @@ -65,13 +192,12 @@ echo $_SESSION['header'];
- + \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\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n"; +foreach($_SESSION['currentPDFStructure'] as $key => $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 @@ -86,21 +212,13 @@ foreach($currentStructure as $entry) { ?> - - @@ -158,14 +268,6 @@ foreach($currentStructure as $entry) { - @@ -197,27 +299,83 @@ foreach($currentStructure as $entry) { -
\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\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
- +
+
+ + + + + + + + + + + + + +
+ + + + + +
+ + + +
+
+
+

 

+
+ + + + + + + + + + + + + + + + + +
+ : + + + + +
+   +
+ "> + + "> + +   +
+ - + +
@@ -226,7 +384,7 @@ foreach($currentStructure as $entry) { $fields) { +foreach($_SESSION['availablePDFFields'] as $module => $fields) { ?>
@@ -261,38 +419,8 @@ foreach($availableFields as $module => $fields) {
-

 

- - - - - - - - - - - - - - -
- : - - - - -
-   -
- "> - - "> - "> - -   -
- + +