xima-media/ical-bundle
Composer 安装命令:
composer require xima-media/ical-bundle
包简介
The XIMA iCal Bundle
README 文档
README
Wraps the eluceo/ical package to a Symfony Bundle with Doctrine Association Mappings and includes Sonata Admin classes.
Installation
composer require xima-media/ical-bundle
Notes:
- The dependency to the eluceo/ical fork depends on markuspoerschke/iCal#50 and will be removed as soon as the pull request is accepeted.
- The dependency to the dev version of herrera-io/doctrine-dateinterval depends on kherge-archive/php-doctrine-dateinterval#3 and will be removed as soon as a new release is out.
Load the bundle in app/AppKernel.php:
public function registerBundles() { $bundles = array( ... new Xima\ICalBundle\XimaICalBundle() }
Configuration
Your projects needs to support the dbal types json and dateinterval, configured in your app/config/config.yml, e.g.:
doctrine: dbal: ... types: json: Sonata\Doctrine\Types\JsonType dateinterval: Herrera\Doctrine\DBAL\Types\DateIntervalType
Integration
1. Create en event entity
You need to create a custom Event class that inherits from ICalBundle's Event class, e.g.:
<?php use Doctrine\ORM\Mapping as ORM; /** * ICalEvent. * * @ORM\Entity */ class ICalEvent extends \Xima\ICalBundle\Entity\Component\Event { }
Note: ORM auto_mapping should be enabled or configure XimaICalBundle manually in app/config/config.yml.
2. Update your database schema
Use your the method of choice to update your database schema, e.g. doctrine migrations.
Sonata Admin classes
Documentation to be done. Take a look, use or inherit from the admin classes in xima-media\ical-bundle\Admin\EventAdmin.php and xima-media\ical-bundle\Admin\RecurrenceRuleAdmin.php.
Usage
Get all events in cal format
/** * @Route("/ical") * Render all events as iCalendar */ protected function iCalAction(Array $events) { $vCalendar = new \Eluceo\iCal\Component\Calendar('myCalendar'); foreach ($events as $event) { $vCalendar->addComponent($event); } $response = new Response(); $response->headers->set('Content-Type', 'text/calendar; charset=utf-8'); $response->headers->set('Content-Disposition', 'inline; filename="cal.ics"'); $response->setContent($vCalendar->render()); return $response; }
xima-media/ical-bundle 适用场景与选型建议
xima-media/ical-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 781 次下载、GitHub Stars 达 1, 最近一次更新时间为 2015 年 09 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 xima-media/ical-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 xima-media/ical-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 781
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2015-09-24