• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/web/webpacker/resource/package.php
  • Класс: BitrixMainWebWebPackerResourcePackage
  • Вызов: Package::getAssets
public function getAssets($type = null)
{
	if ($type)
	{
		$list = [];
		foreach ($this->list as $asset)
		{
			if ($asset->getType() !== $type)
			{
				continue;
			}

			$list[] = $asset;
		}

		return $list;
	}

	return $this->list;
}