migrated to new meta HTML classes

This commit is contained in:
Roland Gruber 2010-12-21 14:30:42 +00:00
parent bddb81325e
commit adc661eb65
1 changed files with 181 additions and 292 deletions

View File

@ -153,15 +153,6 @@ elseif(isset($_GET['add_new_field'])) {
// Insert new entry before closing section tag // Insert new entry before closing section tag
array_splice($_SESSION['currentPDFStructure'],$pos,0,array($field)); array_splice($_SESSION['currentPDFStructure'],$pos,0,array($field));
} }
// Change section headline
elseif(isset($_GET['change'])) {
$alter = explode('_',$_GET['change']);
$newvalue = $_GET['section_' . $alter[0]];
if (isset($alter[1]) && ($alter[1] == 'item') && ($newvalue[0] != '_')) {
$newvalue = '_' . $newvalue;
}
$_SESSION['currentPDFStructure'][$alter[0]]['attributes']['NAME'] = $newvalue;
}
// Remove section, static text or value entry from structure // Remove section, static text or value entry from structure
elseif(isset($_GET['remove'])) { elseif(isset($_GET['remove'])) {
$start = 0; $start = 0;
@ -324,6 +315,15 @@ elseif(isset($_GET['down'])) {
} }
} }
// Change section headline
foreach ($_GET as $key => $value) {
if(strpos($key, 'change_') === 0) {
$alter = explode('_', $key);
$newvalue = $_GET['section_' . $alter[1]];
$_SESSION['currentPDFStructure'][$alter[1]]['attributes']['NAME'] = $newvalue;
}
}
// Load PDF structure from file if it is not defined in session // Load PDF structure from file if it is not defined in session
if(!isset($_SESSION['currentPDFStructure'])) { if(!isset($_SESSION['currentPDFStructure'])) {
// Load structure file to be edit // Load structure file to be edit
@ -378,12 +378,6 @@ foreach($sortedModules as $module => $title) {
} }
$modules = join(',',$modules); $modules = join(',',$modules);
$logoFiles = getAvailableLogos();
$logos = '<option value="none"' . (($_SESSION['currentPageDefinitions']['filename'] == 'none') ? ' selected="selected"' : '') . '>' . _('No logo') . "</option>\n";
foreach($logoFiles as $logoFile) {
$logos .= "<option value=\"" . $logoFile['filename'] . "\"" .(($_SESSION['currentPageDefinitions']['filename'] == $logoFile['filename'] || (!isset($_SESSION['currentPageDefinitions']['filename']) && $logoFile['filename'] == 'printLogo.jpg')) ? ' selected="selected"' : '') . '>' . $logoFile['filename'] . ' (' . $logoFile['infos'][0] . ' x ' . $logoFile['infos'][1] . ")</option>\n";
}
// print header // print header
include '../main_header.php'; include '../main_header.php';
@ -395,15 +389,19 @@ if (sizeof($saveErrors) > 0) {
echo "<br>\n"; echo "<br>\n";
} }
?> $newFieldFieldElements = array();
<br> foreach($sortedModules as $module => $title) {
<form action="pdfpage.php" method="post"> $fields = $_SESSION['availablePDFFields'][$module];
<table> if (isset($fields) && is_array($fields) && (sizeof($fields) > 0)) {
<tr><td> $moduleFields = array();
<table width="100%"> foreach ($fields as $field => $fieldLabel) {
<tr><td align="left"> $moduleFields[$fieldLabel] = $module . "_" . $field;
<?php echo _("Structure name"); ?>: }
<?php $newFieldFieldElements[$title] = $moduleFields;
}
}
// structure name
$structureName = ''; $structureName = '';
if (isset($_GET['edit'])) { if (isset($_GET['edit'])) {
$structureName = $_GET['edit']; $structureName = $_GET['edit'];
@ -414,70 +412,54 @@ if (sizeof($saveErrors) > 0) {
else if (isset($_POST['pdfname'])) { else if (isset($_POST['pdfname'])) {
$structureName = $_POST['pdfname']; $structureName = $_POST['pdfname'];
} }
?> // headline
<input type="text" name="pdfname" value="<?php echo $structureName;?>"> $headline = 'LDAP Account Manager';
<?php if (isset($_SESSION['currentPageDefinitions']['headline'])) {
printHelpLink(getHelp('', '360'), '360'); $headline = $_SESSION['currentPageDefinitions']['headline'];
?>
</td><td align="right">
<button id="saveButton" name="submit"><?php echo _("Save");?></button>
&nbsp;
<button id="cancelButton" name="abort"><?php echo _("Cancel");?></button>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#saveButton').button({
icons: {
primary: 'saveButton'
} }
}); // logo
jQuery('#cancelButton').button({ $logoFiles = getAvailableLogos();
icons: { $logos = array(_('No logo') => 'none');
primary: 'cancelButton' foreach($logoFiles as $logoFile) {
$logos[$logoFile['filename'] . ' (' . $logoFile['infos'][0] . ' x ' . $logoFile['infos'][1] . ")"] = $logoFile['filename'];
} }
}); $selectedLogo = array('printLogo.jpg');
}); if (isset($_SESSION['currentPageDefinitions']['filename'])) {
</script> $selectedLogo = array($_SESSION['currentPageDefinitions']['filename']);
</td></tr> }
</table>
</td></tr><tr> ?>
<!-- print current structure --> <br>
<td align="left" valign="top"> <form action="pdfpage.php" method="post">
<fieldset class="<?php echo $_GET['type']; ?>edit">
<legend>
<b><?php if (isset($_GET['pdfname'])) echo $_GET['pdfname']; ?></b>
</legend>
<BR>
<b><?php echo _('Headline'); ?>:</b>
<input type="text" name="headline" value="<?php echo ((isset($_SESSION['currentPageDefinitions']['headline'])) ? $_SESSION['currentPageDefinitions']['headline'] : 'LDAP Account Manager'); ?>">
&nbsp;&nbsp;&nbsp;&nbsp;
<b><?php echo _('Logo'); ?>:</b>
<select name="logoFile" size="1">
<?php echo $logos; ?>
</select>
<BR><HR><BR>
<table width="100%">
<?php <?php
$sections = '<option value="0">' . _('Beginning') . "</option>\n"; $sectionElements = array(_('Beginning') => 0);
$nonTextSections = ''; $nonTextSectionElements = array();
// Print every entry in the current structure
$container = new htmlTable();
$container->addElement(new htmlTitle(_('PDF editor')), true);
// main content
$mainContent = new htmlTable();
$structureNameInput = new htmlTableExtendedInputField(_("Structure name"), 'pdfname', $structureName, '360');
$structureNameInput->setRequired(true);
$mainContent->addElement($structureNameInput, true);
$mainContent->addElement(new htmlTableExtendedInputField(_('Headline'), 'headline', $headline), true);
$logoSelect = new htmlTableExtendedSelect('logoFile', $logos, $selectedLogo, _('Logo'));
$logoSelect->setHasDescriptiveElements(true);
$mainContent->addElement($logoSelect, true);
$mainContent->addElement(new htmlSpacer(null, '30px'), true);
// PDF structure
// print every entry in the current structure
$structureContent = new htmlTable();
foreach($_SESSION['currentPDFStructure'] as $key => $entry) { foreach($_SESSION['currentPDFStructure'] as $key => $entry) {
// Create the up/down/remove links // create the up/down/remove links
$links = "<td width=18>\n<a href=\"pdfpage.php?type=" . $_GET['type'] . "&amp;up=" . $key . $linkBase = 'pdfpage.php?type=' . $_GET['type'] . '&pdfname=' . $structureName . '&headline=' . $headline . '&logoFile=' . $selectedLogo[0];
(isset($_GET['pdfname']) ? '&amp;pdfname=' . $_GET['pdfname'] : '') . $linkUp = new htmlLink(null, $linkBase . '&up=' . $key, '../../graphics/up.gif');
(isset($_GET['headline']) ? '&amp;headline=' . $_GET['headline'] : '') . $linkUp->setTitle(_("Up"));
(isset($_GET['logoFile']) ? '&amp;logoFile=' . $_GET['logoFile'] : '') . "\">" . $linkDown = new htmlLink(null, $linkBase . '&down=' . $key, '../../graphics/down.gif');
"<img src=\"../../graphics/up.gif\" alt=\"" . _("Up") . "\" border=\"0\"></a>\n</td>\n" . $linkDown->setTitle(_("Down"));
"<td width=18>\n<a href=\"pdfpage.php?type=" . $_GET['type'] . "&amp;down=" . $key . $linkRemove = new htmlLink(null, $linkBase . '&remove=' . $key, '../../graphics/delete.gif');
(isset($_GET['pdfname']) ? '&amp;pdfname=' . $_GET['pdfname'] : '') . $linkRemove->setTitle(_("Remove"));
(isset($_GET['headline']) ? '&amp;headline=' . $_GET['headline'] : '') .
(isset($_GET['logoFile']) ? '&amp;logoFile=' . $_GET['logoFile'] : '') . "\">" .
"<img src=\"../../graphics/down.gif\" alt=\"" . _("Down") . "\" border=\"0\"></a>\n</td>\n" .
"<td width=18>\n<a href=\"pdfpage.php?type=" . $_GET['type'] . "&amp;remove=" . $key .
(isset($_GET['pdfname']) ? '&amp;pdfname=' . $_GET['pdfname'] : '') .
(isset($_GET['headline']) ? '&amp;headline=' . $_GET['headline'] : '') .
(isset($_GET['logoFile']) ? '&amp;logoFile=' . $_GET['logoFile'] : '') . "\">" .
"<img src=\"../../graphics/delete.gif\" alt=\"" . _("Remove") . "\" border=\"0\"></a>\n</td>\n" .
"<td width=\"100%\">&nbsp;</td>";
// We have a new section to start // We have a new section to start
if($entry['tag'] == "SECTION" && $entry['type'] == "open") { if($entry['tag'] == "SECTION" && $entry['type'] == "open") {
$name = $entry['attributes']['NAME']; $name = $entry['attributes']['NAME'];
@ -487,226 +469,133 @@ foreach($_SESSION['currentPDFStructure'] as $key => $entry) {
else { else {
$section_headline = $name; $section_headline = $name;
} }
$nonTextSections .= '<option value="' . $key . '">' . $section_headline . "</option>\n"; $nonTextSectionElements[$section_headline] = $key;
$sections .= '<option value="' . ($key) . '">' . $section_headline . "</option>\n"; $sectionElements[$section_headline] = $key;
?> $structureContent->addElement(new htmlSpacer(null, '15px'), true);
<tr>
<td nowrap colspan="2">
<?php
// Section headline is a value entry // Section headline is a value entry
if(preg_match("/^_[a-zA-Z0-9_]+_[a-zA-Z0-9_]+/",$name)) { if(preg_match("/^_[a-zA-Z0-9_]+_[a-zA-Z0-9_]+/",$name)) {
?> $headlineElements = array();
<select name="section_<?php echo $key;?>">
<?php
foreach($section_items_array as $item) { foreach($section_items_array as $item) {
?> $headlineElements[translateFieldIDToName($item, $_GET['type'])] = '_' . $item;
<option value="_<?php echo $item;?>"<?php echo ((substr($name,1) == $item) ? ' selected' : '');?>><?php echo translateFieldIDToName($item, $_GET['type']);?></option>
<?php
} }
?> $sectionHeadlineSelect = new htmlSelect('section_' . $key, $headlineElements, array($name));
</select> $sectionHeadlineSelect->setHasDescriptiveElements(true);
<button type="submit" name="change" value="<?php echo $key;?>_item"><?php echo _('Change');?></button> $sectionHeadlineGroup = new htmlGroup();
<?php $sectionHeadlineGroup->addElement($sectionHeadlineSelect);
$sectionHeadlineGroup->addElement(new htmlButton('change_' . $key, _('Change')));
$sectionHeadlineGroup->colspan = 2;
$structureContent->addElement($sectionHeadlineGroup);
} }
// Section headline is a user text // Section headline is a user text
else { else {
?> $sectionHeadlineInput = new htmlInputField('section_' . $key, $section_headline);
<input type="text" name="section_<?php echo $key;?>" value="<?php echo $section_headline;?>">&nbsp;&nbsp;<button type="submit" name="change" value="<?php echo $key;?>"><?php echo _('Change');?></button> $sectionHeadlineGroup = new htmlGroup();
<?php $sectionHeadlineGroup->addElement($sectionHeadlineInput);
$sectionHeadlineGroup->addElement(new htmlButton('change_' . $key, _('Change')));
$sectionHeadlineGroup->colspan = 2;
$structureContent->addElement($sectionHeadlineGroup);
} }
?> $structureContent->addElement($linkUp);
</td> $structureContent->addElement($linkDown);
<td width="20">&nbsp;</td> $structureContent->addElement($linkRemove, true);
<?php echo $links;?>
</tr>
<?php
}
// We have a section to end
elseif($entry['tag'] == "SECTION" && $entry['type'] == "close") {
?>
<tr>
<td colspan="7">
<br>
</td>
</tr>
<?php
} }
// We have to include a static text. // We have to include a static text.
elseif($entry['tag'] == "TEXT") { elseif($entry['tag'] == "TEXT") {
// Add current satic text for dropdown box needed for the position when inserting a new // Add current satic text for dropdown box needed for the position when inserting a new
// section or static text entry // section or static text entry
$sections .= '<option value="' . ($key + 1) . '">' . _('Static text') . "</option>\n"; $sectionElements[_('Static text')] = $key + 1;
?> $structureContent->addElement(new htmlSpacer(null, '15px'), true);
<tr> $sectionHeadlineOutput = new htmlOutputText(_('Static text'));
<td nowrap colspan="2" width="400"> $sectionHeadlineOutput->colspan = 2;
<b><?php echo _('Static text');?></b> $structureContent->addElement($sectionHeadlineOutput);
</td> $structureContent->addElement($linkUp);
<td width="20"> $structureContent->addElement($linkDown);
</td> $structureContent->addElement($linkRemove, true);
<?php echo $links;?> $structureContent->addElement(new htmlSpacer('10px', null));
</tr> $staticTextOutput = new htmlOutputText($entry['value']);
<tr> $structureContent->addElement($staticTextOutput, true);
<td colspan="7">
<br>
</td>
</tr>
<tr>
<td>
</td>
<td colspan="6">
<?php echo $entry['value'];?>
</td>
</tr>
<tr>
<td colspan="7">
<br>
</td>
</tr>
<?php
} }
// We have to include an entry from the account // We have to include an entry from the account
elseif($entry['tag'] == "ENTRY") { elseif($entry['tag'] == "ENTRY") {
// Get name of current entry // Get name of current entry
$name = $entry['attributes']['NAME']; $name = $entry['attributes']['NAME'];
?> $structureContent->addElement(new htmlSpacer('10px', null));
<tr> $fieldOutput = new htmlOutputText(translateFieldIDToName($name, $_GET['type']));
<td width="20"> $structureContent->addElement($fieldOutput);
</td> $structureContent->addElement($linkUp);
<td> $structureContent->addElement($linkDown);
<?php echo translateFieldIDToName($name, $_GET['type']);?> $structureContent->addElement($linkRemove, true);
</td>
<td width="20">
</td>
<?php echo $links;?>
</tr>
<?php
} }
} }
// Print the boxes for adding new sections and static text entries $structureContent->colspan = 3;
// Print save and abort buttons $mainContent->addElement($structureContent);
?> $container->addElement(new htmlFieldset($mainContent), true);
</table> $container->addElement(new htmlSpacer(null, '15px'), true);
</fieldset>
<p>&nbsp;</p>
</td>
</tr> // new section
<tr> $container->addElement(new htmlSubTitle(_('New section')), true);
<td colspan="3"> $newSectionContent = new htmlTable();
<fieldset class="<?php echo $_GET['type']; ?>edit"> // add new section with text title
<legend> $newSectionContent->addElement(new htmlTableExtendedInputField(_("Headline"), 'section_text'));
<b><?php echo _('New section');?></b> $newSectionPositionSelect1 = new htmlTableExtendedSelect('add_sectionText_position', $sectionElements, array(), _('Position'));
</legend><BR> $newSectionPositionSelect1->setHasDescriptiveElements(true);
<table> $newSectionPositionSelect1->setSortElements(false);
<tr> $newSectionContent->addElement($newSectionPositionSelect1);
<td> $newSectionContent->addElement(new htmlButton('add_sectionText', _('Add')), true);
<fieldset class="<?php echo $_GET['type']; ?>edit"> // add new section with field title
<legend> $newSectionFieldSelect = new htmlTableExtendedSelect('section_item', $newFieldFieldElements, array(), _("Headline"));
<b><?php echo _("Section"); ?></b> $newSectionFieldSelect->setHasDescriptiveElements(true);
</legend> $newSectionFieldSelect->setContainsOptgroups(true);
<table align="left" width="100%"> $newSectionContent->addElement($newSectionFieldSelect);
<tr> $newSectionPositionSelect2 = new htmlTableExtendedSelect('add_section_position', $sectionElements, array(), _('Position'));
<td> $newSectionPositionSelect2->setHasDescriptiveElements(true);
<?php echo _("Headline"); ?>: <input type="text" name="section_text">&nbsp;&nbsp;&nbsp; $newSectionPositionSelect2->setSortElements(false);
</td> $newSectionContent->addElement($newSectionPositionSelect2);
<td> $newSectionContent->addElement(new htmlButton('add_section', _('Add')));
<B><?php echo _('Position');?>: </B>
<select name="add_sectionText_position">
<?php echo $sections;?>
</select>
</td>
<td>
<input type="submit" name="add_sectionText" value="<?php echo _('Add');?>">
</td>
</tr>
<tr>
<td>
<?php echo _("Headline"); ?>:
<select name="section_item">
<?php echo $section_items;?>
</select>&nbsp;&nbsp;&nbsp;
</td>
<td>
<B><?php echo _('Position');?>: </B>
<select name="add_section_position">
<?php echo $sections;?>
</select>
</td>
<td>
<input type="submit" name="add_section" value="<?php echo _('Add');?>">
</td>
</tr>
</table>
</fieldset>
</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td>
<fieldset class="<?php echo $_GET['type']; ?>edit">
<legend>
<b><?php echo _("Text field"); ?></b>
</legend>
<table width="100%">
<tr>
<td>
<textarea name="text_text" rows="3" cols="40"></textarea>&nbsp;&nbsp;&nbsp;
</td>
<td>
<B><?php echo _('Position');?>: </B>
<select name="add_text_position">
<?php echo $sections;?>
</select>
</td>
<td>
<input type="submit" name="add_text" value="<?php echo _('Add');?>">
</td>
</tr>
</table>
</fieldset>
</td>
</tr>
</table>
</fieldset>
</td>
</tr>
<tr>
<td colspan="3">
<fieldset class="<?php echo $_GET['type']; ?>edit">
<legend>
<b><?php echo _('New field');?></b>
</legend><BR>
<select name="new_field">
<?php
foreach($sortedModules as $module => $title) {
$fields = $_SESSION['availablePDFFields'][$module];
if (isset($fields) && is_array($fields) && (sizeof($fields) > 0)) {
natcasesort($fields);
echo "<optgroup label=\"$title\">\n";
foreach ($fields as $field => $fieldLabel) {
echo "<option value=\"" . $module . "_" . $field . "\" label=\"$fieldLabel\">$fieldLabel</option>\n";
}
echo "</optgroup>\n";
}
}
?>
</select>
<B><?php echo _('Position');?>: </B>
<select name="add_field_position">
<?php echo $nonTextSections;?>
</select>
<input type="submit" name="add_new_field" value="<?php echo _('Add');?>">
</fieldset>
</td>
</tr>
</table>
<input type="hidden" name="modules" value="<?php echo $modules;?>">
<input type="hidden" name="type" value="<?php echo $_GET['type'];?>">
</form>
<?php $container->addElement(new htmlFieldset($newSectionContent, _("Section")), true);
$container->addElement(new htmlSpacer(null, '10px'), true);
$newTextFieldContent = new htmlTable();
$newTextFieldContent->addElement(new htmlInputTextarea('text_text', '', 40, 3));
$newTextFieldPositionSelect = new htmlTableExtendedSelect('add_text_position', $sectionElements, array(), _('Position'));
$newTextFieldPositionSelect->setHasDescriptiveElements(true);
$newTextFieldPositionSelect->setSortElements(false);
$newTextFieldContent->addElement($newTextFieldPositionSelect);
$newTextFieldContent->addElement(new htmlButton('add_text', _('Add')));
$container->addElement(new htmlFieldset($newTextFieldContent, _("Text field")), true);
// new field
$container->addElement(new htmlSubTitle(_('New field')), true);
$newFieldContainer = new htmlTable();
$newFieldFieldSelect = new htmlSelect('new_field', $newFieldFieldElements);
$newFieldFieldSelect->setHasDescriptiveElements(true);
$newFieldFieldSelect->setContainsOptgroups(true);
$newFieldContainer->addElement($newFieldFieldSelect);
$newFieldContainer->addElement(new htmlSpacer('10px', null));
$newFieldSectionSelect = new htmlTableExtendedSelect('add_field_position', $nonTextSectionElements, array(), _('Position'));
$newFieldSectionSelect->setHasDescriptiveElements(true);
$newFieldContainer->addElement($newFieldSectionSelect);
$newFieldContainer->addElement(new htmlButton('add_new_field', _('Add')));
$container->addElement(new htmlFieldset($newFieldContainer), true);
$container->addElement(new htmlSpacer(null, '20px'), true);
// buttons
$buttonContainer = new htmlTable();
$saveButton = new htmlButton('submit', _("Save"));
$saveButton->setIconClass('saveButton');
$cancelButton = new htmlButton('abort', _("Cancel"));
$cancelButton->setIconClass('cancelButton');
$buttonContainer->addElement($saveButton);
$buttonContainer->addElement($cancelButton);
$buttonContainer->addElement(new htmlHiddenInput('modules', $modules));
$buttonContainer->addElement(new htmlHiddenInput('type', $_GET['type']));
$container->addElement($buttonContainer, true);
$tabindex = 1;
parseHtml(null, $container, array(), false, $tabindex, $_GET['type']);
echo '</form>';
include '../main_footer.php'; include '../main_footer.php';