update with latest changes and DE translations
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
class EventEntity {
|
||||
|
||||
var $calendar_name;
|
||||
var $calendar_description;
|
||||
var $event_name;
|
||||
var $location;
|
||||
var $description;
|
||||
@@ -23,6 +24,20 @@ class EventEntity {
|
||||
public function setCalendarName($calendar_name) {
|
||||
$this->calendar_name = $calendar_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getCalendarDescription() {
|
||||
return $this->calendar_description;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $calendar_description
|
||||
*/
|
||||
public function setCalendarDescription($calendar_description) {
|
||||
$this->calendar_description = $calendar_description;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
|
||||
@@ -35,7 +35,7 @@ class GoogleCalendarService {
|
||||
);
|
||||
|
||||
try {
|
||||
Log::debug('G-Calendar: Call google with #getCalendar.');
|
||||
Log::debug('G-Calendar: Call google with #getCalendar for calendar with id: ' . $calendarId);
|
||||
$response = $this->service->events->listEvents($calendarId, $params);
|
||||
|
||||
Cache::put($this->cacheKeyCalendarGet.$calendarId, $response, $cacheTime);
|
||||
|
||||
Reference in New Issue
Block a user