• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/integration/bizproc/message/notifytemplate.php
  • Класс: BitrixImIntegrationBizprocMessageNotifyTemplate
  • Вызов: NotifyTemplate::setFields
public function setFields(array $fields): self
{
	parent::setFields($fields);

	if (is_string($fields['EntityTypeName'] ?? null))
	{
		$this->entityTypeName = trim($fields['EntityTypeName']);
	}
	if (is_string($fields['EntityName'] ?? null))
	{
		$this->entityName = trim($fields['EntityName']);
	}
	if (is_string($fields['EntityLink'] ?? null))
	{
		$this->entityLink = trim($fields['EntityLink']);
	}

	return $this;
}