Using Gdata Calendar API for PHP App to create a calender system with event ownership

Posted by linuxlover101 on Stack Overflow See other posts from Stack Overflow or by linuxlover101
Published on 2010-04-06T04:19:09Z Indexed on 2010/04/06 4:23 UTC
Read the original article Hit count: 429

Hello,

I'm working on a PHP app, and I'm trying to find the best way to set up a calendar system.

First let me describe the intended function of the system: The application has multiple users who can login simultaneously. Each user should be able to add their own events and display them on their "profile." Also, on another page, the events should be able to be shown all together (from all users) and from each individual users exclusively.

Since Google Calendar has a nice calendar-looking interface, I thought I would work with the GData APIs. Originally, I thought this would make things easier. But then it seems that if I want to represent event ownership, either each user would have to have a google account or somehow they all would each have to have a separate calendar. Thus, the application would have to create the calendar (if it does not exist) and be able to edit only their calendar.

Two questions:

  1. Can I somehow use the GData APIs to accomplish my goal? (Mainly event ownership.)

  2. Should I just create my own calendar like application?

Thanks!

© Stack Overflow or respective owner

Related posts about gdata-api

Related posts about php