mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 00:18:42 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
51 lines
927 B
PHP
51 lines
927 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\DirectEditing;
|
|
|
|
use JsonSerializable;
|
|
|
|
/**
|
|
* Class ATemplate
|
|
*
|
|
* @since 18.0.0
|
|
*/
|
|
abstract class ATemplate implements JsonSerializable {
|
|
/**
|
|
* Return a unique id so the app can identify the template
|
|
*
|
|
* @since 18.0.0
|
|
* @return string
|
|
*/
|
|
abstract public function getId(): string;
|
|
|
|
/**
|
|
* Return a title that is displayed to the user
|
|
*
|
|
* @since 18.0.0
|
|
* @return string
|
|
*/
|
|
abstract public function getTitle(): string;
|
|
|
|
/**
|
|
* Return a link to the template preview image
|
|
*
|
|
* @since 18.0.0
|
|
* @return string
|
|
*/
|
|
abstract public function getPreview(): string;
|
|
|
|
/**
|
|
* @since 18.0.0
|
|
*/
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'id' => $this->getId(),
|
|
'title' => $this->getTitle(),
|
|
'preview' => $this->getPreview(),
|
|
];
|
|
}
|
|
}
|