kappa/calendar
最新稳定版本:v1.0.0
Composer 安装命令:
composer require kappa/calendar
包简介
Component for generation calendar prepared for next work with it
README 文档
README
Component for generation calendar prepared for next work with it
Requirements:
- PHP 5.3 or higher
- Composer
- nette/application 2.2 or higher
- nette/di 2.2 or higher
Installation
The best way to install kappa/calendar is using Composer:
$ composer require kappa/calendar:@dev
And now you have to register the extensions in config.neon
extensions: - Kappa\Calendar\CalendarExtension
Usages
You can use default component with default or custom template
/** * @inject * @var \Kappa\Calendar\ICalendarControlFactory */ public $calendarControlFactory; /** * @return \Kappa\Calendar\CalendarControl */ protected function createComponentCalendar() { return $this->calendarControlFactory->create(); }
with custom template
/** * @return \Kappa\Calendar\CalendarControl */ protected function createComponentCalendar() { $calendar = $this->calendarControlFactory->create(); $calendar->setTemplate('template.latte'); return $calendar; }
or in template
{control calendar 'template.latte'}
In template will be $calendar variable contains Calendar object for more info please see into
default template
统计信息
- 总下载量: 54
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2013-01-09