madforwebs/calendar-bundle

This bundle provides a calendar bundle for symfony2

Installs: 77

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master 2022-02-05 18:32 UTC

This package is auto-updated.

Last update: 2024-04-05 23:44:51 UTC


README

The CalendarBundle means easy-to-implement and feature-rich calendar in your Symfony application!

Installation

Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require madforwebs/calendar-bundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Enable the Bundle

Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:

// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new MadForWebs\CalendarBundle\CalendarBundle(),
        );

        // ...
    }

    // ...
}

Import service calendar to app

You must define import service from @CalendarBundle like this in your config.yml

    imports:
        ...
        - { resource: "@CalendarBundle/Resources/config/services.yml" }
        ...

Import calendar festive days

An example use service to import festive days

    /** @var CalendarHandler $calendarHandler */
    $calendarHandler = $this->get('mad_for_webs_calendar.handler');
    $calendarHandler->createDaysFromCalendar();

Extend class day calendar

You can extend class

    use MadForWebs\CalendarBundle\Entity\Day as BaseDay;
    
    /**
     * @ORM\Entity
     * @ORM\Table(name="mfw_day")
     */
    class Day extends BaseDay
    {
        ...
    }