1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
fuser.php
См. документацию.
1<?php
2
3namespace Bitrix\Sale\Discount\Context;
4
5use Bitrix\Sale\Discount\RuntimeCache;
6
7class Fuser extends BaseContext
8{
9 protected $fuserId;
10
16 public function __construct($fuserId)
17 {
18 $this->fuserId = $fuserId;
19 $this->userId = RuntimeCache\FuserCache::getInstance()->getUserIdById($this->fuserId);
20 $this->setUserGroups(\CUser::getUserGroup($this->userId));
21 }
22}
setUserGroups(array $userGroups)
Определения basecontext.php:38
__construct($fuserId)
Определения fuser.php:16