Componette

Componette

JanGalek

JanGalek / netteCalendar v1.4.1

๐Ÿ“… Extending DateTime for Nette framework.

download-cloud-line composer require galek/nette-calendar

nette Calendar

Travis Total Downloads Latest Stable Version License Monthly Downloads Coverage Status

Extend Nette\Utils\DateTime() for Nette framework

Package Installation

The best way to install Nette Calendar is using Composer:

$ composer require galek/nette-calendar

Packagist - Versions

or manual edit composer.json in your project

"require": {
    "galek/nette-calendar": "^1.0"
}

Usage

    use \Galek\Utils\Calendar;

    $date = new Calendar();

    if($date->isWorkday()){
        echo "Today is workday :/";
    }

    if($date->isHoliday()){
        echo "Today is holiday :)";
    }

// Easter
    echo "Easter of this year is: ".$date->getEaster();
    echo "Easter of 2020 year is: ".$date->getEaster(2020);
    echo "Easter Monday of this year is: ".$date->getEasterMonday();
    echo "Easter Big Friday of this year is: ".$date->getBigFriday();

    echo "Today or next workday:".$date->getWorkday()->format('d.m.Y');
    echo "Next workday:".$date->getWorkday(true)->format('d.m.Y');

// Something for e-shops ;)
    $date->setShippingTime(14, 20);
    echo "Date for shipping to some Hour and minute:".$date->getShippingDate()->format('d.m.Y');
    
    /**
     * $date->setShippingTime(14, 20);
     * $date->getShippingDate()
     * Friday 9:30 < 14:20 = Monday
     * Friday 14:30 > 14:20 = Wednesday (Monday send)
     * etc...
     **/

Documentation

Learn more in the documentation and czech version of documentation.

Migration and changelog 1.x -> 2.x documentation and czech version of documentation.

Future

This repository will be rewrite to https://github.com/DateTi for smallest repositories and will use more interfaces ;)

  • v1.4.1

    • Added: getWorkDayNumberInMonth
    • Added: getWorkDayNumberInMonthTo
    • Added: Tests
    • Deprecated: werbDif2
  • v1.3.2

    Added support for Nette 3.0

  • v1.1.2

bar-chart-fill

Statistics

download-cloud-fill
2533
star-fill
2
bug-fill
1
flashlight-fill
4.4y
price-tag-2-line

Badges

guide-fill

Dependencies

php (>= 7.0)
nette/utils (^2.4|^3.0)
nette/neon (^2.4|^3.0@dev)
nette/di (^2.4|^3.0@dev)
nette/bootstrap (^2.4|^3.0@dev)
Componette Componette felix@nette.org