Files
server/usr/share/psa-horde/templates/data/datemap.inc
2026-01-07 20:52:11 +01:00

49 lines
1.5 KiB
PHP

<form method="post" name="dateform" action="<?php echo Horde::url('data.php') ?>">
<input type="hidden" name="actionID" value="<?php echo (int)$next_step ?>" />
<input type="hidden" name="import_format" value="<?php echo htmlspecialchars(Horde_Util::getFormData('import_format')) ?>" />
<input type="hidden" name="import_step" value="<?php echo (int)$import_step ?>" />
<?php Horde_Util::pformInput() ?>
<h1 class="header">
<?php printf(_("Import, Step %d"), (int)$import_step) ?>
</h1>
<div class="horde-content">
<table cellspacing="0" width="100%">
<?php
$map = $storage->get('map');
foreach ($storage->get('dates') as $key => $date): ?>
<tr>
<td>
<table cellspacing="0" width="100%">
<tr><td class="item">&nbsp;</td></tr>
<tr><td class="smallheader"><?php printf(_("Imported field: %s"), htmlspecialchars($app_fields[$map[$key]])) ?></td></tr>
</table>
</td>
</tr>
<tr>
<td class="item">
<table>
<?php if (count($date['values'])): ?>
<tr>
<td><?php echo Horde::label('examples', _("Example values:")) ?></td>
<td>
<select id="examples">
<?php foreach ($date['values'] as $val): ?>
<option><?php echo htmlspecialchars($val) ?></option>
<?php endforeach; ?>
</select>
</td>
</tr>
<?php endif; ?>
<?php include __DIR__ . '/' . basename($date['type']) . '.inc' ?>
</table>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>
<div class="horde-form-buttons">
<input type="submit" class="horde-default" value="<?php echo _("Next") ?>" />
</div>
</form>