1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
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}
Определения types.php:11
const GRID_GRID
Определения types.php:17
const GRID_LIST
Определения types.php:16
const GRID_TEXT
Определения types.php:13
const GRID_INT
Определения types.php:14
const GRID_CHECKBOX
Определения types.php:12
const GRID_CUSTOM
Определения types.php:15
static getList()
Определения types.php:23