2017 © Pedro PelĂĄez
 

symfony-bundle calendar-bundle

This bundle provides a calendar bundle for symfony2

image

madforwebs/calendar-bundle

This bundle provides a calendar bundle for symfony2

  • Thursday, June 14, 2018
  • by madforwebs
  • Repository
  • 0 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

CalendarBundle

The CalendarBundle means easy-to-implement and feature-rich calendar in your Symfony application!, (*1)

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:, (*2)

$ composer require madforwebs/calendar-bundle

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

Enable the Bundle

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

// 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, (*5)

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

Import calendar festive days

An example use service to import festive days, (*6)

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

Extend class day calendar

You can extend class, (*7)

    use MadForWebs\CalendarBundle\Entity\Day as BaseDay;

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

The Versions

14/06 2018

dev-master

9999999-dev

This bundle provides a calendar bundle for symfony2

  Sources   Download

MIT

The Requires

 

by Fernando SĂĄnchez MartĂ­nez