Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
baseitem.php
1<?php
2
4
6
8{
9 private int $iblockId;
10 private ProductRightsChecker $rights;
11
12 public function __construct(int $iblockId, ProductRightsChecker $rights)
13 {
14 $this->iblockId = $iblockId;
15 $this->rights = $rights;
16 }
17
18 protected function getIblockId(): int
19 {
20 return $this->iblockId;
21 }
22
24 {
25 return $this->rights;
26 }
27}
__construct(int $iblockId, ProductRightsChecker $rights)
Definition baseitem.php:12