• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/assets/manager.php
  • Класс: BitrixLandingAssetsManager
  • Вызов: Manager::isNeedAddAsset
protected function isNeedAddAsset(string $code, int $location): bool
{
	if ($this->isAssetRegistered($code))
	{
		return $location < $this->getRegisteredAssetLocation($code);
	}

	if (CJSCore::isExtensionLoaded($code))
	{
		return false;
	}

	return true;
}