Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
CheckPermissionsResponse.php
1<?php
2
4
8
10{
11 public function getRightParam(): ?RightParam
12 {
13 return $this->data['rightParam'] ?? null;
14 }
15
16 public function setRightParam(RightParam $rightParam): static
17 {
18 $this->data['rightParam'] = $rightParam;
19
20 return $this;
21 }
22
23 public function getElementRight(): ?ElementRight
24 {
25 return $this->data['elementRight'] ?? null;
26 }
27
28 public function setElementRight(ElementRight $elementRight): static
29 {
30 $this->data['elementRight'] = $elementRight;
31
32 return $this;
33 }
34
35 public function getIBlockRight(): ?IblockRight
36 {
37 return $this->data['iBlockRight'] ?? null;
38 }
39
40 public function setIBlockRight(IblockRight $iBlockRight): static
41 {
42 $this->data['iBlockRight'] = $iBlockRight;
43
44 return $this;
45 }
46}