Download the PHP package borysenko/calendar without Composer
On this page you can find all versions of the php package borysenko/calendar. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download borysenko/calendar
More information about borysenko/calendar
Files in borysenko/calendar
Download borysenko/calendar
More information about borysenko/calendar
Files in borysenko/calendar
Vendor borysenko
Package calendar
Short Description Calendar of events Расширение для Yii 2
License
Homepage https://github.com/borysenko/calendar
Package calendar
Short Description Calendar of events Расширение для Yii 2
License
Homepage https://github.com/borysenko/calendar
Please rate this library. Is it a good library?
Informations about the package calendar
Calendar of events Расширение для Yii 2
Календарь событий. Обычный календарь с выделенными датами в которых есть события. Перемещение по месяцам сделано на ajax.
Установка
php composer.phar require borysenko/calendar "dev-master"
или
php -d "disable_functions=" composer.phar require borysenko/calendar "dev-master"
Настройка
в \frontend\config\main.php добавляем в самом вверху
\Yii::$container->set('borysenko\calendar\Calendar', [
'model'=>'frontend\models\News',
'field_table' => 'date',
'link' => '/news/index'
]);
model - это модель события. (в моем случае это модель News); field_table - это поле в таблицы событий, по нему делается выделение дат в каллендаре. (в моем случае это поле date);
в \frontend\config\main.php добавляем
'controllerMap' => [
'calendar' => [
'class' => 'borysenko\calendar\BaseController',
]
],
Использование
В шаблоне:
echo borysenko\calendar\Calendar::widget([]);
All versions of calendar with dependencies
PHP Build Version
Package Version
Requires
borysenko/calendar Version
dev-master
The package borysenko/calendar contains the following files
Loading the files please wait ....