Chunk.php
3 months ago
JScriptUIAssetFetcher.php
2 years ago
PluginUmdAssetFetcher.php
2 months ago
StaticUIAssetFetcher.php
2 years ago
StylesheetUIAssetFetcher.php
2 years ago
StaticUIAssetFetcher.php
32 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | */ |
| 9 | namespace Piwik\AssetManager\UIAssetFetcher; |
| 10 | |
| 11 | use Piwik\AssetManager\UIAssetFetcher; |
| 12 | class StaticUIAssetFetcher extends UIAssetFetcher |
| 13 | { |
| 14 | /** |
| 15 | * @var string[] |
| 16 | */ |
| 17 | private $priorityOrder; |
| 18 | public function __construct($fileLocations, $priorityOrder, $theme) |
| 19 | { |
| 20 | parent::__construct(array(), $theme); |
| 21 | $this->fileLocations = $fileLocations; |
| 22 | $this->priorityOrder = $priorityOrder; |
| 23 | } |
| 24 | protected function retrieveFileLocations() |
| 25 | { |
| 26 | } |
| 27 | protected function getPriorityOrder() |
| 28 | { |
| 29 | return $this->priorityOrder; |
| 30 | } |
| 31 | } |
| 32 |