知道任何开源 zend 框架日历吗?
我正在尝试找到一个可以很好地与我的 zend 框架应用程序配合使用的开源 PHP 日历.理想情况下,我应该能够在公共站点上显示事件,并在管理部分添加/编辑/删除事件.
I'm trying to find an open source PHP calendar that will play nicely with my zend framework application. Ideally, I should be able to display the events on the public site, and add/edit/delete events in the admin section.
任何能阻止我重新发明轮子以便我抢占先机的东西都会很棒.
Anything that would keep me from re-inventing the wheel so I can get a head start would be great.
更新:目前,我已经嵌入了一个可以从 Google 日历站点更新的 Google 日历,但我仍在寻找使用 Zend 框架完成的工作.p>
Update: At the moment, I have embedded a google calendar that I can update from the Google Calendar site, but I am still looking for something that has been done using the Zend Framework.
推荐答案
Dojo 有一个用于编辑的日历小部件 http://api.dojotoolkit.org/jsdoc/1.3/dijit.form.DateTextBox
Dojo has a calendar widget for editing http://api.dojotoolkit.org/jsdoc/1.3/dijit.form.DateTextBox
创建日历控制器非常简单:只需几个小时.
Creating a calendar controller is pretty easy: only a couple of hours work.
有时可能需要几个小时才能将第三方日历小部件集成到您的应用中.我已经把这种事情搞砸了几次,然后就后悔了.大多数时候,对于像这样简单的东西,快速推出自己的东西比花 2 个小时寻找第三方、几个小时安装和工作、另一个小时找出一些神秘的错误等更容易....
Sometimes it can take several hours to get a third party calendar widget integrated into your app. I've messed around with this sort of things a few times and regretted it. Most of the time, for simple stuff like this, it is easier to quickly roll your own rather than spend 2 hours hunting for a third party one, a few hours getting it installed and working, another hour figuring out some mysterious bug etc etc....
相关文章