CAllCrmDeal::GetAllStageNames

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CAllCrmDeal
  4. GetAllStageNames
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_deal.php
  • Класс: \CAllCrmDeal
  • Вызов: CAllCrmDeal::GetAllStageNames
static function GetAllStageNames($categoryID = 0)
{
	$result = array();
	$stages = self::GetStages($categoryID);
	foreach($stages as $stageID => $stage)
	{
		$result[$stageID] = $stage['NAME'];
	}
	return $result;
}

Добавить комментарий