2019-10-14 10:55:39 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2019-10-14 10:55:39 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-10-14 10:55:39 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\DirectEditing;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 18.0.0
|
|
|
|
|
*/
|
|
|
|
|
abstract class ACreateFromTemplate extends ACreateEmpty {
|
|
|
|
|
/**
|
|
|
|
|
* List of available templates for the create from template action
|
|
|
|
|
*
|
|
|
|
|
* @since 18.0.0
|
2019-11-25 08:09:38 -05:00
|
|
|
* @return ATemplate[]
|
2019-10-14 10:55:39 -04:00
|
|
|
*/
|
|
|
|
|
abstract public function getTemplates(): array;
|
|
|
|
|
}
|