flopezlosada/calendar-bundle
Composer 安装命令:
composer require flopezlosada/calendar-bundle
包简介
This bundle allows you to integrate the jQuery FullCalendar plugin into your Symfony2 application.
README 文档
README
This bundle allows you to integrate the jQuery FullCalendar plugin into your Symfony2 application.
Once installed, this bundle will use event listeners to load events from any bundle in your application.
Installation
Before installing, please note that this bundle has a dependency on the FOSJsRouting bundle to expose the calendar AJAX event loader route. Please ensure that the FOSJsRouting bundle is installed and configured before continuing.
Through Composer (Symfony 2.1+):
Add the following lines in your composer.json file:
composer require adesigns/calendar-bundle
Register the bundle in app/AppKernel.php:
// app/AppKernel.php public function registerBundles() { return array( // ... new ADesigns\CalendarBundle\ADesignsCalendarBundle(), ); }
Register the routing in app/config/routing.yml:
# app/config/routing.yml adesigns_calendar: resource: "@ADesignsCalendarBundle/Resources/config/routing.xml"
Publish the assets:
$ php app/console assets:install web
Usage
Add the required stylesheet and javascripts to your layout:
Stylesheet:
<link rel="stylesheet" href="{{ asset('bundles/adesignscalendar/css/fullcalendar/fullcalendar.css') }}" />
Javascript:
<script type="text/javascript" src="{{ asset('bundles/adesignscalendar/js/jquery/jquery-1.8.2.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('bundles/adesignscalendar/js/fullcalendar/jquery.fullcalendar.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('bundles/adesignscalendar/js/calendar-settings.js') }}"></script>
Then, in the template where you wish to display the calendar, add the following twig:
{% include 'ADesignsCalendarBundle::calendar.html.twig' %}
Adding Events
The best part about this bundle is that you can add events to the calendar from any part of your application. The calendar loads events via AJAX, and dispatches an event to load calendar events from your application.
When a request is made to load events for a given start/end time, the bundle dispatches a calendar.load_events event. Adding event listeners is an easy 2 step process
Create an Event Listener class in your bundle:
// src/Acme/DemoBundle/EventListener/CalendarEventListener.php namespace Acme\DemoBundle\EventListener; use ADesigns\CalendarBundle\Event\CalendarEvent; use ADesigns\CalendarBundle\Entity\EventEntity; use Doctrine\ORM\EntityManager; class CalendarEventListener { private $entityManager; public function __construct(EntityManager $entityManager) { $this->entityManager = $entityManager; } public function loadEvents(CalendarEvent $calendarEvent) { $startDate = $calendarEvent->getStartDatetime(); $endDate = $calendarEvent->getEndDatetime(); // The original request so you can get filters from the calendar // Use the filter in your query for example $request = $calendarEvent->getRequest(); $filter = $request->get('filter'); // load events using your custom logic here, // for instance, retrieving events from a repository $companyEvents = $this->entityManager->getRepository('AcmeDemoBundle:MyCompanyEvents') ->createQueryBuilder('company_events') ->where('company_events.event_datetime BETWEEN :startDate and :endDate') ->setParameter('startDate', $startDate->format('Y-m-d H:i:s')) ->setParameter('endDate', $endDate->format('Y-m-d H:i:s')) ->getQuery()->getResult(); // $companyEvents and $companyEvent in this example // represent entities from your database, NOT instances of EventEntity // within this bundle. // // Create EventEntity instances and populate it's properties with data // from your own entities/database values. foreach($companyEvents as $companyEvent) { // create an event with a start/end time, or an all day event if ($companyEvent->getAllDayEvent() === false) { $eventEntity = new EventEntity($companyEvent->getTitle(), $companyEvent->getStartDatetime(), $companyEvent->getEndDatetime()); } else { $eventEntity = new EventEntity($companyEvent->getTitle(), $companyEvent->getStartDatetime(), null, true); } //optional calendar event settings $eventEntity->setAllDay(true); // default is false, set to true if this is an all day event $eventEntity->setBgColor('#FF0000'); //set the background color of the event's label $eventEntity->setFgColor('#FFFFFF'); //set the foreground color of the event's label $eventEntity->setUrl('http://www.google.com'); // url to send user to when event label is clicked $eventEntity->setCssClass('my-custom-class'); // a custom class you may want to apply to event labels //finally, add the event to the CalendarEvent for displaying on the calendar $calendarEvent->addEvent($eventEntity); } } }
Additional properties and customization of each event on the calendar can be found in the Entity/EventEntity class.
Then, add the listener to your services:
<?xml version="1.0" ?> <container xmlns="http://symfony.com/schema/dic/services"> <services> <service id="acme.demobundle.calendar_listener" class="Acme\DemoBundle\EventListener\CalendarEventListener"> <argument type="service" id="doctrine.orm.entity_manager" /> <tag name="kernel.event_listener" event="calendar.load_events" method="loadEvents" /> </service> </services> </container>
And that's it! When the ADesignsCalendarBundle::calendar.html.twig template is rendered, any events within the current month/day/year will be pulled from your application.
Extending the Calendar Javascript
You may want to customize the FullCalendar javascript to meet your applications needs. In order to do this, you can copy the calendar-settings.js in Resources/public/js, and modify it to fit your needs. For instance, you can pass custom filters to your event listeners by adding extra parameters in the eventSources method:
eventSources: [ { url: Routing.generate('fullcalendar_loader'), type: 'POST', // A way to add custom filters to your event listeners data: { filter: 'my_custom_filter_param' }, error: function() { //alert('There was an error while fetching Google Calendar!'); } } ]
flopezlosada/calendar-bundle 适用场景与选型建议
flopezlosada/calendar-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 41 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 12 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「calendar」 「fullcalendar」 「jquery calendar」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 flopezlosada/calendar-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 flopezlosada/calendar-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 flopezlosada/calendar-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar
A modern PHP library for generating iCalendar v2.0 events
Yii2 fullcalendar widget (fork)
A fullcalendar implementation for TYPO3 CMS
A powerful event calendar Tool for Laravel's Nova 5.
Check for holidays - localeaware
统计信息
- 总下载量: 41
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-12-04