mirror of
https://github.com/nextcloud/server.git
synced 2025-03-14 00:13:56 +00:00
70 lines
1.2 KiB
PHP
70 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\DAV\Events;
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
/**
|
|
* Class CalendarDeletedEvent
|
|
*
|
|
* @package OCA\DAV\Events
|
|
* @since 20.0.0
|
|
*/
|
|
class CalendarDeletedEvent extends Event {
|
|
|
|
/** @var int */
|
|
private $calendarId;
|
|
|
|
/** @var array */
|
|
private $calendarData;
|
|
|
|
/** @var array */
|
|
private $shares;
|
|
|
|
/**
|
|
* CalendarDeletedEvent constructor.
|
|
*
|
|
* @param int $calendarId
|
|
* @param array $calendarData
|
|
* @param array $shares
|
|
* @since 20.0.0
|
|
*/
|
|
public function __construct(int $calendarId,
|
|
array $calendarData,
|
|
array $shares) {
|
|
parent::__construct();
|
|
$this->calendarId = $calendarId;
|
|
$this->calendarData = $calendarData;
|
|
$this->shares = $shares;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
* @since 20.0.0
|
|
*/
|
|
public function getCalendarId(): int {
|
|
return $this->calendarId;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
* @since 20.0.0
|
|
*/
|
|
public function getCalendarData(): array {
|
|
return $this->calendarData;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
* @since 20.0.0
|
|
*/
|
|
public function getShares(): array {
|
|
return $this->shares;
|
|
}
|
|
}
|