• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integrity/actualranking.php
  • Класс: Bitrix\Crm\Integrity\ActualRanking
  • Вызов: ActualRanking::updateListByRankedList
protected function updateListByRankedList(array $rankedList)
{
	foreach ($this->list as $entityId)
	{
		if (in_array($entityId, $rankedList))
		{
			continue;
		}

		$rankedList[] = $entityId;
	}

	$this->list = $rankedList;
}