[ Index ] |
|
Code source de Horde 3.1.3 |
1 <form method="post" name="dateform" action="<?php echo Horde::applicationUrl('data.php') ?>"> 2 <input type="hidden" name="actionID" value="<?php echo (int)$next_step ?>" /> 3 <input type="hidden" name="import_format" value="<?php echo htmlspecialchars(Util::getFormData('import_format')) ?>" /> 4 <input type="hidden" name="import_step" value="<?php echo (int)$import_step ?>" /> 5 <?php Util::pformInput() ?> 6 <h1 class="header"> 7 <?php printf(_("Import, Step %d"), (int)$import_step) ?> 8 </h1> 9 <table cellspacing="0" width="100%"> 10 <?php foreach ($_SESSION['import_data']['dates'] as $key => $date): ?> 11 <?php if (count($date['values'])): ?> 12 <tr> 13 <td> 14 <table cellspacing="0" width="100%"> 15 <tr><td class="item"> </td></tr> 16 <tr><td class="smallheader"><?php printf(_("Imported field: %s"), htmlspecialchars($app_fields[$_SESSION['import_data']['map'][$key]])) ?></td></tr> 17 </table> 18 </td> 19 </tr> 20 <tr> 21 <td class="item"> 22 <table> 23 <tr> 24 <td><?php echo _("Example values:") ?></td> 25 <td> 26 <select> 27 <?php foreach ($date['values'] as $val): ?> 28 <option><?php echo htmlspecialchars($val) ?></option> 29 <?php endforeach; ?> 30 </select> 31 </td> 32 </tr> 33 <?php include dirname(__FILE__) . '/' . basename($date['type']) . '.inc' ?> 34 </table> 35 </td> 36 </tr> 37 <?php endif; ?> 38 <?php endforeach; ?> 39 </table> 40 41 <input type="submit" class="button" value="<?php echo _("Next") ?>" /> 42 </form>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 18:01:28 2007 | par Balluche grâce à PHPXref 0.7 |