1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
EntityBuilderFromDeal.php
См. документацию.
1<?php
2
3namespace Bitrix\Calendar\Relation\Builder\Entity;
4
5use Bitrix\Crm\EO_Deal;
6
8{
9
11 public function __construct(private $deal)
12 {}
13
14 protected function getEntityId(): int
15 {
16 return $this->deal->getId();
17 }
18
19 protected function getEntityType(): string
20 {
21 return 'deal';
22 }
23
24 protected function getLink(): string
25 {
26 return \CCrmOwnerType::getEntityShowPath(\CCrmOwnerType::Deal, $this->getEntityId());
27 }
28}