mirror of
https://github.com/Karaka-Management/oms-Surveys.git
synced 2026-01-11 16:08:41 +00:00
45 lines
765 B
PHP
45 lines
765 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package Modules\Surveys\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Surveys\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Task status enum.
|
|
*
|
|
* @package Modules\Surveys\Models
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class SurveyElementType extends Enum
|
|
{
|
|
public const HEADLINE = 1;
|
|
|
|
public const DROPDOWN = 2;
|
|
|
|
public const CHECKBOX = 3;
|
|
|
|
public const RADIO = 4;
|
|
|
|
public const TEXTFIELD = 5;
|
|
|
|
public const TEXTAREA = 6;
|
|
|
|
public const NUMERIC = 7;
|
|
|
|
public const DATE = 8;
|
|
}
|