Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
ProcessService.php
1<?php
2
4
8
9final class ProcessService extends ServiceFactory
10{
11 private static string $iBlockTypeId = '';
12
13 public static function getIBlockTypeId(): string
14 {
15 if (empty(self::$iBlockTypeId))
16 {
17 self::$iBlockTypeId = Option::get('lists', 'livefeed_iblock_type_id', 'bitrix_processes');
18 }
19
20 return self::$iBlockTypeId;
21 }
22
23 protected function fillCatalogFilter(IBlockListFilter $filter): void
24 {
25 $filter->setSite(SITE_ID);
26 }
27
28 protected function fillElementListFilter(IBlockElementFilter $filter): void
29 {}
30
31 protected function fillElementDetailInfoFilter(IBlockElementFilter $filter): void
32 {}
33}