hscstudio / yii2-fullcalendar
Yii2 fullcalendar Widgets
Installs: 192
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.4.0
- bower-asset/fullcalendar: 2.*
- yiisoft/yii2: *
- yiisoft/yii2-jui: *
This package is auto-updated.
Last update: 2024-10-25 21:31:51 UTC
README
Yii 2 Extension for library calendar.io
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist hscstudio/yii2-fullcalendar "*"
or add
"hscstudio/yii2-fullcalendar": "*"
to the require section of your composer.json
file.
Usage
You may have a table event (id, title (varchar), start (date/datetime), end (date/datetime))
In view
<?php $eventUrl = \yii\helpers\Url::to(['event-calendar']); ?> <?= hscstudio\calendar\FullCalendar::widget([ 'options'=>[ 'id'=>'calendar', 'header'=>[ 'left'=>'prev,next today', 'center'=>'title', 'right'=>'month,agendaWeek,agendaDay', ], 'editable'=> true, 'eventLimit'=>true, // allow "more" link when too many events 'events' => [ 'url' => $eventUrl, ], ] ]) ?>
In controller to get events
public function actionEventCalendar($start=NULL,$end=NULL,$_=NULL){ \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON; $model= \app\models\Event::find()->all(); if(!empty($start) and !empty($end)){ $model= \app\models\Event::find() ->where(['>=','start',date('Y-m-d 00:00:01',strtotime($start))]) ->andWhere(['<=','end',date('Y-m-d 23:59:59',strtotime($end))]) ->all(); } $events = []; foreach ($model as $event) { $events[]=[ 'title'=>$event->title, 'start'=>date('Y-m-d 00:00:01',strtotime($event->start)), 'end'=>date('Y-m-d 23:59:59', strtotime($event->end)), //'color'=>'#CC0000', //'allDay'=>true, //'url'=>'http://anyurl.com' ]; } return $events; }
How to Contribute
This tools is an OpenSource project so your contribution is very welcome.
In order to get started:
- Install this in your local (read installation section)
- Clone this repository.
- Check README.md.
- Send pull requests.
Aside from contributing via pull requests you may submit issues.
Our Team
- Hafid Mukhlasin - Project Leader / Indonesian Yii developer.
We'd like to thank our contributors for improving this tools. Thank you!
Jakarta - Indonesia