PHP code example of texxasrulez / calendar

1. Go to this page and download the library: Download texxasrulez/calendar 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/ */

    

texxasrulez / calendar example snippets


$config['calendar_driver'] = 'rounddav';

$config['plugins'] = [
    // ...
    'calendar',
];

$config['calendar_driver'] = 'rounddav';
$config['calendar_caldav_server'] = 'https://www.domain.com/rounddav/public/';
$config['calendar_caldav_url'] = 'https://www.domain.com/rounddav/public/calendars/%u/%n/';

$config['rounddav_base_url'] = 'https://www.domain.com/rounddav/public';

$config['calendar_driver'] = 'caldav';
$config['calendar_caldav_server'] = 'https://caldav.example.com/';
$config['calendar_caldav_url'] = 'https://caldav.example.com/calendars/%u/%n/';

$config['calendar_driver'] = 'database';

$config['calendar_driver'] = 'kolab';
text
roundcube/
  plugins/
    calendar/
    libcalendaring/
    libkolab/