• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/repository/location/strategy/save.php
  • Класс: BitrixLocationRepositoryLocationStrategySave
  • Вызов: Save::getRepoPriority
protected function getRepoPriority(IRepository $repository)
{
	if($repository instanceof IDatabase)
	{
		$result = self::REPO_PRIORITY_A;
	}
	elseif($repository instanceof ICache)
	{
		$result = self::REPO_PRIORITY_B;
	}
	else
	{
		$result = self::REPO_PRIORITY_C;
	}

	return $result;
}