File: D:/HostingSpaces/SBogers10/boldt.komma.pro/app/Komma/Components/ComponentType/ComponentTypes.php
<?php
namespace App\Komma\Components\ComponentType;
use App\Komma\Base\Enum;
/**
* Class ComponentTypes
*
* All component types and their ids.
* Notice: The ids don't correspond to database records anymore
*
* @package App\Komma\Components\ComponentType
*/
class ComponentTypes extends Enum
{
const UNKNOWN = 0;
const TEXT_IMAGE = 1;
const DOUBLE_TEXT = 2;
const VIDEO = 3;
const TEXT = 4;
const IMAGE = 5;
const SERVICES_DISPLAY = 6;
const PROJECT_CARDS = 7;
const CTA_PERSON = 8;
const TEAM_GRID = 9;
const CTA_JOBS = 10;
const TRIPLE_TEXT = 11;
}