jaroslav-kubicek / event-calendar
Plugin for Nette based web applications for creating calendar with custom events
Installs: 2 595
Dependents: 1
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 5
Open Issues: 1
Requires
- php: >= 5.3.0
- nette/nette: >= 2.0.7
Requires (Dev)
- apigen/apigen: 2.8.0
- nette/tester: @dev
Suggests
- dg/texy: >= v2.2.0
This package is not auto-updated.
Last update: 2020-01-19 15:53:03 UTC
README
- add-on component for Nette framework - http://nette.org/
- enable displaying various events in calendar
- provide methods for localisation & customization
- you can also use html and Texy! in your event texts
- http://addons.nette.org/cs/eventcalendar
Installing
Install component to your project via Composer:
"require": {
...
"jaroslav-kubicek/event-calendar": "0.2.1"
}
Quick start
Add to your code (in presenter/control):
public function createComponentCalendar() {
$cal = new EventCalendar\Simple\SimpleCalendar();
return $cal;
}
and in template:
{control calendar}