如何将fullcalendar与多用户和mysql集成?
我正在寻找一个支持多个用户的基于网络的多用户日历系统。我想调整此日历 http://arshaw.com/fullcalendar/ 并包含以下功能:
* Multiple users
* Two user groups: First group is allowed to see events, the second group can create and edit events
* The events should be stored in a mysql database
如果您知道类似的日历或其他日历,请告诉我。
PD。请不要用谷歌日历评论资源!
I'm searching for a multiuser web-based calendar system that supports multiple users. I would like to adapt this calendar http://arshaw.com/fullcalendar/ and include these features:
* Multiple users
* Two user groups: First group is allowed to see events, the second group can create and edit events
* The events should be stored in a mysql database
If you know something like this or other calendar, please let me know.
pd. not comment resources with google calendar, please!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以很容易地完成,例如使用 PHP。
我使用以下实现开发了一个应用程序:
您只需设置日历的 events 属性即可从 PHP 脚本中获取事件,该脚本检查用户会话信息,并以 JSON 形式返回此类用户的事件。
这也可用于编辑事件,脚本在允许添加、编辑或删除事件之前检查权限,并以 JSON 形式返回操作结果。
不仅如此,只有当您希望我为您做这项工作时才可以:)
This can be easily done, using PHP for example.
I have developed an application using the following implementation:
You just have to set the events property of the calendar to fetch the events from a PHP script, this script checks for user session information, and returns the events for such user as JSON.
This can also be used for editing events, with the script checking for permissions before allowing adding, editing, or removing events, and returning the result of the operation as JSON.
More than that, only if you want me to do the work for you :)