Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
usersettings.php
1<?php
2namespace Bitrix\Main\Filter;
4{
5 private $whiteList = [];
6
7 function __construct(array $params)
8 {
9 parent::__construct($params);
10
11 $this->whiteList = isset($params['WHITE_LIST']) && is_array($params['WHITE_LIST'])
12 ? $params['WHITE_LIST'] : [];
13 }
14
15 public function getWhiteList()
16 {
17 return $this->whiteList;
18 }
19
24 public function getEntityTypeName()
25 {
26 return 'USER';
27 }
28
33 public function getUserFieldEntityID()
34 {
35 return \Bitrix\Main\UserTable::getUfId();
36 }
37}