41 lines
1.1 KiB
PHP
41 lines
1.1 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\Export\Renderer;
|
|
|
|
use App\Activity\ActivityStatisticService;
|
|
use App\Export\Base\HtmlRenderer;
|
|
use App\Project\ProjectStatisticService;
|
|
use Psr\EventDispatcher\EventDispatcherInterface;
|
|
use Twig\Environment;
|
|
|
|
final class HtmlRendererFactory
|
|
{
|
|
public function __construct(
|
|
private readonly Environment $twig,
|
|
private readonly EventDispatcherInterface $dispatcher,
|
|
private readonly ProjectStatisticService $projectStatisticService,
|
|
private readonly ActivityStatisticService $activityStatisticService
|
|
) {
|
|
}
|
|
|
|
public function create(string $id, string $template, string $title = 'print'): HtmlRenderer
|
|
{
|
|
return new HtmlRenderer(
|
|
$this->twig,
|
|
$this->dispatcher,
|
|
$this->projectStatisticService,
|
|
$this->activityStatisticService,
|
|
$id,
|
|
$title,
|
|
$template
|
|
);
|
|
}
|
|
}
|