• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_activity.php
  • Класс: \CCrmActivityStatus
  • Вызов: CCrmActivityStatus::GetAllDescriptions
static function GetAllDescriptions()
{
	if(!self::$ALL_DESCRIPTIONS)
	{
		self::$ALL_DESCRIPTIONS = array(
			self::Undefined => '',
			self::Waiting => GetMessage('CRM_ACTIVITY_STATUS_WAITING'),
			self::Completed => GetMessage('CRM_ACTIVITY_STATUS_COMPLETED'),
			self::AutoCompleted => GetMessage('CRM_ACTIVITY_STATUS_AUTO_COMPLETED')
		);
	}

	return self::$ALL_DESCRIPTIONS;
}