Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
messagetype.php
1<?
2
3namespace Bitrix\Main\Grid;
4
5
11{
12 const MESSAGE = "MESSAGE";
13 const ERROR = "ERROR";
14 const WARNING = "WARNING";
15 const INFO = "INFO";
16 const SUCCESS = "SUCCESS";
17
18
23 public static function getList()
24 {
25 $reflection = new \ReflectionClass(__CLASS__);
26 return $reflection->getConstants();
27 }
28}