aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Files/Template/FieldType.php
blob: 2d059cadc17d081b26d15047ecf3704410617d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

/**
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace OCP\Files\Template;

/**
 * @since 30.0.0
 */
enum FieldType: string {
	case RichText = 'rich-text';
	case CheckBox = 'checkbox';
	case DropDownList = 'drop-down-list';
	case Picture = 'picture';
	case Date = 'date';
}