• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_activity.php
  • Класс: \CCrmActivityNotifyType
  • Вызов: CCrmActivityNotifyType::FromCalendarEventRemind
static function FromCalendarEventRemind($type)
{
	$type = mb_strtolower(strval($type));

	if($type === 'min')
	{
		return CCrmActivityNotifyType::Min;
	}
	elseif($type === 'hour')
	{
		return CCrmActivityNotifyType::Hour;
	}
	elseif($type === 'day')
	{
		return CCrmActivityNotifyType::Day;
	}

	return CCrmActivityNotifyType::None;
}