Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
types.php
1<?php
2
3namespace Bitrix\Main\Grid;
4
5
10class Types
11{
12 public const GRID_CHECKBOX = 'checkbox';
13 public const GRID_TEXT = 'text';
14 public const GRID_INT = 'int';
15 public const GRID_CUSTOM = 'custom';
16 public const GRID_LIST = 'list';
17 public const GRID_GRID = 'grid';
18
23 public static function getList()
24 {
25 $reflection = new \ReflectionClass(__CLASS__);
26
27 return $reflection->getConstants();
28 }
29}