fileFactory = $fileFactory; $this->readDirFactory = $readDirFactory; $this->componentRegistrar = $componentRegistrar; $this->subDir = $subDir ? $subDir . '/' : ''; } /** * Retrieve files * * @param ThemeInterface $theme * @param string $filePath * @return \Magento\Framework\View\File[] * @throws \UnexpectedValueException */ public function getFiles(ThemeInterface $theme, $filePath) { $themePath = $theme->getFullPath(); if (empty($themePath)) { return []; } $themeAbsolutePath = $this->componentRegistrar->getPath(ComponentRegistrar::THEME, $themePath); if (!$themeAbsolutePath) { return []; } $themeDir = $this->readDirFactory->create($themeAbsolutePath); $files = $themeDir->search($this->subDir . $filePath); $result = []; foreach ($files as $file) { $filename = $themeDir->getAbsolutePath($file); $result[] = $this->fileFactory->create($filename, null, $theme); } return $result; } }