• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/activity/entity/configurablerestapp/dto/textwithtranslationdto.php
  • Класс: Bitrix\Crm\Activity\Entity\ConfigurableRestApp\Dto\TextWithTranslationDto
  • Вызов: TextWithTranslationDto::__construct
public function __construct($value = null)
{
	parent::__construct();

	if (is_scalar($value))
	{
		$this->text = (string)$value;
	}
	if (is_array($value))
	{
		$this->translations = $value;
	}
}