part.editevent.php 1012 B

1234567891011121314
  1. <div id="event" title="<?php echo $l->t("Edit an event");?>">
  2. <form id="event_form">
  3. <input type="hidden" name="id" value="<?php echo $_['eventid'] ?>">
  4. <input type="hidden" name="lastmodified" value="<?php echo $_['lastmodified'] ?>">
  5. <?php echo $this->inc("part.eventform"); ?>
  6. <div style="width: 100%;text-align: center;color: #FF1D1D;" id="errorbox"></div>
  7. <span id="actions">
  8. <input type="button" class="submit" style="float: left;" value="<?php echo $l->t("Submit");?>" onclick="Calendar.UI.validateEventForm('?app=calendar&getfile=ajax/event/edit.php');">
  9. <input type="button" class="submit" style="float: left;" name="delete" value="<?php echo $l->t("Delete");?>" onclick="Calendar.UI.submitDeleteEventForm('?app=calendar&getfile=ajax/event/delete.php');">
  10. <input type="button" class="submit" style="float: right;" name="export" value="<?php echo $l->t("Export");?>" onclick="window.location='?app=calendar&getfile=export.php?eventid=<?php echo $_['eventid'] ?>';">
  11. </span>
  12. </form>
  13. </div>