• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/assets/manager.php
  • Класс: BitrixLandingAssetsManager
  • Вызов: Manager::addAsset
public function addAsset($code, $location = null): void
{
	// recursive for arrays
	if (is_array($code))
	{
		foreach ($code as $item)
		{
			$this->addAsset((string)$item, $location);
		}
	}
	else
	{
		$this->addAssetRecursive($code, $location);
	}
}