Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
actions.php
1<?php
2
4
5use ReflectionClass;
6
13{
14 public const CREATE = 'CREATE';
15 public const SEND = 'SEND';
16 public const ACTIVATE = 'ACTIVATE';
17 public const SHOW = 'SHOW';
18 public const HIDE = 'HIDE';
19 public const REMOVE = 'REMOVE';
20 public const CALLBACK = 'CALLBACK';
21 public const INLINE_EDIT = 'INLINE_EDIT';
22 public const HIDE_ALL_EXPECT = 'HIDE_ALL_EXPECT';
23 public const SHOW_ALL = 'SHOW_ALL';
24 public const RESET_CONTROLS = 'RESET_CONTROLS';
25
31 public static function getList()
32 {
33 $reflection = new ReflectionClass(__CLASS__);
34
35 return $reflection->getConstants();
36 }
37}