Skip to content

Modify Event Form to Include Additional Data

Procedure to modify the calendar event form for customization:
  1. Modify the /server/html/event-create.html.php, which is the UI, to include any additional input one would like to include on the event form. 
  2. Take a look at  /server/classes/cls_events.php class. Pay attention to saveEvent() and editEvent() functions. The event data is passed as a simple array
  3. Those two functions saveEvent, editEvent are called in /ajax/event_manager.php
  4. Lastly, be sure to modify the database event table to include any additional data.

Feedback and Knowledge Base