1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
RecentConfig.php
См. документацию.
1<?php
2
3namespace Bitrix\Im\V2\Recent\Config;
4
6{
7 private ?string $ownSectionName = null;
8
9 public function __construct(
10 public readonly bool $useDefaultRecentSection = true,
11 public readonly bool $hasOwnRecentSection = false,
12 ){}
13
14 public function setOwnSectionName(string $name): self
15 {
16 $this->ownSectionName = $name;
17
18 return $this;
19 }
20
21 public function getOwnSectionName(): ?string
22 {
23 return $this->ownSectionName;
24 }
25}
setOwnSectionName(string $name)
Определения RecentConfig.php:14
__construct(public readonly bool $useDefaultRecentSection=true, public readonly bool $hasOwnRecentSection=false,)
Определения RecentConfig.php:9
$name
Определения menu_edit.php:35