konecnyjakub/event-calendar

This package is abandoned and no longer maintained. The author suggests using the nexendrie/event-calendar package instead.

Plugin for Nette based web applications for creating calendar with custom events

Maintainers

Package info

github.com/nexendrie/EventCalendar

Homepage

Documentation

pkg:composer/konecnyjakub/event-calendar

Statistics

Installs: 659

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.9.0 2026-03-15 19:13 UTC

This package is auto-updated.

Last update: 2026-03-17 20:37:35 UTC


README

Total Downloads Latest Stable Version Build Status Code Coverage

This is an add-on component for Nette framework which enables displaying various events in calendar. It provides methods for localization & customization. You can also use html and Texy! in your event texts.

Installation

The best way to install it is via Composer. Just add nexendrie/event-calendar to your dependencies.

Quick start

Add to your code (in presenter/control):

<?php

declare(strict_types=1);

use Nexendrie\EventCalendar\Simple\SimpleCalendar;

class MyPresenter extends \Nette\Application\UI\Presenter
{
    protected function createComponentCalendar(): SimpleCalendar {
        $cal = new SimpleCalendar();
        return $cal;
    }
} 

and in template:

    {control calendar}