Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
enum.php
1<?php
2
4
5class Enum
6{
7 const TYPE_CRM = 'crm';
8 const TYPE_MENU = 'menu';
9 const TYPE_STORE = 'store';
10 const TYPE_MATERIAL = 'material';
11
12 static public function getAllType(): array
13 {
14 return [
19 ];
20 }
21
22 static public function getUseAllType(): array
23 {
24 return [
28 ];
29 }
30}