49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Twig\Runtime;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
use Symfony\Contracts\Service\ServiceSubscriberInterface;
|
|
use Symfony\WebpackEncoreBundle\Asset\EntrypointLookupInterface;
|
|
use Twig\Extension\RuntimeExtensionInterface;
|
|
|
|
final class EncoreExtension implements RuntimeExtensionInterface, ServiceSubscriberInterface
|
|
{
|
|
public function __construct(
|
|
private readonly ContainerInterface $container,
|
|
private readonly string $projectDirectory
|
|
)
|
|
{
|
|
}
|
|
|
|
public static function getSubscribedServices(): array
|
|
{
|
|
return [
|
|
EntrypointLookupInterface::class,
|
|
];
|
|
}
|
|
|
|
public function getEncoreEntryCssSource(string $packageName): string
|
|
{
|
|
$lookup = $this->container->get(EntrypointLookupInterface::class);
|
|
$files = $lookup->getCssFiles($packageName);
|
|
|
|
$source = '';
|
|
|
|
foreach ($files as $file) {
|
|
$source .= file_get_contents($this->projectDirectory . '/public/' . $file);
|
|
}
|
|
|
|
$lookup->reset();
|
|
|
|
return $source;
|
|
}
|
|
}
|