PHP code example of maximaster / production-calendar

1. Go to this page and download the library: Download maximaster/production-calendar library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

maximaster / production-calendar example snippets


use Maximaster\ProductionCalendar\Calendar;
use Maximaster\ProductionCalendar\RulesProvider\BasicdataProvider;

$calendar = Calendar::fromProvider(new BasicdataProvider);
if ($calendar->isFreeDay('01.01.2017')) {

use Maximaster\ProductionCalendar\Rules;
if ($calendar->isDay('01.01.2017', [Rules::HOLIDAY, Rules::PRE_HOLIDAY])) {

$calendar->getDayType('01.01.2017'); // Rules::REGULAR_REST

$calendar->getMonthWorkDaysCount(2017, 6); // 21

Calendar::fromProvider(new CacheProvider(new BasicdataProvider));

$calendar = $this->getContainer()->get('app.calendar');