blob: a431ffb5a10c8f013a766145bf583e7f58b39940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
namespace Lightscale\LaralightAssets;
class Assets
{
private string $defaultManifest;
private array $manifests = [];
private array $manifestsParsers = [];
private array $files = [];
private array $queuedHeadFiles = [];
private array $queuedFooterFiles = [];
public function addManifest(
string $name,
Manifest $manifest,
bool $isDefault = false
): void
{
$this->manifests[$name] = $manifest;
if ($isDefault) {
$this->defaultManifest = $name;
}
}
public function registerManifest(
string $name,
string $path,
string $baseUrl,
string $parserClass = JsonManifestParser::class,
bool $isDefault = false,
): void
{
$this->addManifest(
$name,
new Manifest($path, $baseUrl, $parserClass),
$isDefault
);
}
public function getManifests(): array
{
return $this->manifests;
}
public function getManifest(string $name): Manifest
{
return $this->getManifests()[$name];
}
public function getDefaultManifest(): Manifest
{
return $this->getManifest($this->defaultManifest);
}
}
|