frequence-web/calendr-bundle

This package is abandoned and no longer maintained. The author suggests using the yohang/calendr package instead.

This bundle provides an integration of the CalendR library

1.2.2 2018-03-25 21:27 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:20:40 UTC


README

This bundle provides CalendR integration.

It allows you to manage calendar and events.

Calendar generation

Controller:

/**
 * @Template()
 */
public function indexAction()
{
    return array('month' => $this->get('calendr')->getMonth(2012, 01));
}

Template

<table>

    {% for week in month %}
        <tr>
            {% for day in week %}
                <td>
                    {% if month.contains(day) %}
                        {{ day.begin.format('d') }}
                    {% else %}
                        &nbsp;
                    {% endif %}
                </td>
            {% endfor %}
        </tr>
    {% endfor %}

</table>

Event management

Providers

To manage your events, you have to create a provider and an event class. See CalendR doc

Declare your provider

This bundle allows you to easily add your providers to the CalendR event manager. Your provider have to be a service.

#config.yml

services:
    my_event_provider:
        class: Your\Bundle\Event\Provider
        tags:
            - { name: calendr.event_provider }