1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCP\Files\Template;
- use OCP\EventDispatcher\Event;
- use OCP\Files\File;
- /**
- * @since 21.0.0
- */
- class FileCreatedFromTemplateEvent extends Event {
- private $template;
- private $target;
- private $templateFields;
- /**
- * @param File|null $template
- * @param File $target
- * @since 21.0.0
- */
- public function __construct(?File $template, File $target, array $templateFields) {
- $this->template = $template;
- $this->target = $target;
- $this->templateFields = $templateFields;
- }
- /**
- * @return File|null
- * @since 21.0.0
- */
- public function getTemplate(): ?File {
- return $this->template;
- }
- /**
- * @return array
- * @since 30.0.0
- */
- public function getTemplateFields(): array {
- return $this->templateFields;
- }
- /**
- * @return File
- * @since 21.0.0
- */
- public function getTarget(): File {
- return $this->target;
- }
- }
|