• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/Compatible/Compatible.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\Compatible\Compatible
  • Вызов: Compatible::convertType
private function convertType($value)
{
	if (is_array($value))
	{
		foreach ($value as $key => $subValue)
		{
			$value[$key] = $this->convertType($subValue);
		}
	}
	elseif (!is_bool($value))
	{
		$value = (string)$value;
	}

	return $value;
}