Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
handler.php
1<?php
10
12{
13 public const
14 ENTITY_TYPE_GROUP = 'USERGROUPS';
15
16 public static function getProviderByEntityType($entityType)
17 {
18 switch($entityType)
19 {
21 $provider = new UserGroups();
22 break;
23 default:
24 $provider = false;
25 }
26
27 return $provider;
28 }
29}
static getProviderByEntityType($entityType)
Definition handler.php:16