Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
IBlockListService.php
1<?php
2
4
7
9{
10 private string $iBlockTypeId = '';
11
12 public function setIBlockTypeId(string $iBlockTypeId): self
13 {
14 $this->iBlockTypeId = $iBlockTypeId;
15
16 return $this;
17 }
18
19 public function getInnerIBlockTypeId(): string
20 {
21 return $this->iBlockTypeId;
22 }
23
24 public static function getIBlockTypeId(): string
25 {
26 return '';
27 }
28
29 protected function fillCatalogFilter(IBlockListFilter $filter): void
30 {
31 $filter->setSite(SITE_ID);
32 }
33
34 protected function fillElementListFilter(IBlockElementFilter $filter): void
35 {}
36
37 protected function fillElementDetailInfoFilter(IBlockElementFilter $filter): void
38 {}
39}