• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/SignDocument.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\SignDocument
  • Вызов: SignDocument::getSignerContentBlock
protected function getSignerContentBlock(Signer $signer, string $value = ''): Layout\Body\ContentBlock
{
	return (new Layout\Body\ContentBlock\Text())
		->setValue(
			!empty($value) ? implode(', ',
				[
					$signer->getTitle(),
					$value,
				]
			) : $signer->getTitle()
		)
	;
}