• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/statusbase.php
  • Класс: BitrixSaleStatusBase
  • Вызов: StatusBase::convertNamesToOperations
static function convertNamesToOperations($names)
{
	$operations = array();

	foreach ($names as $name)
	{
		$operations[] = 'sale_status_'.mb_strtolower($name);
	}

	return $operations;
}