I want to add a Calendar on Google Calendar with this code.
function addCalendar($client, $nomeInsegnamento, $codiceInsegnamento){
$calendar = new Calendar();
$calendar->setSummary($nomeInsegnamento." - ".$codiceInsegnamento);
$calendar->setTimeZone('Europe/Rome');
return $client -> calendars -> insert($calendar);
}
i have imported the Google API library for PHP
require_once '../src/Google_Client.php';
require_once '../src/contrib/Google_CalendarService.php';
but it always get this error
Fatal error: Class 'Calendar' not found in D:\Programmi\EasyPHP-DevServer-13.1VC9\data\localweb\projects\GCE\prova.php on line 182