PHP code example of penblu / fullcalendar

1. Go to this page and download the library: Download penblu/fullcalendar library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

penblu / fullcalendar example snippets


<?= \penblu\fullcalendar\FullCalendar::widget([
        "containerId" => "pb-cal",
        "lang" => Yii::$app->language,
        "dataEvents" => $exam,//Json::encode(array()),
        "maxWidth" => "100%",
        "margin" => "0px auto",
        "eventClickFn" => "showEvent",
]); 

php composer.phar