configurable print export (#2657)

This commit is contained in:
Kevin Papst
2021-07-13 10:11:20 +02:00
committed by GitHub
parent 7661d43327
commit 27cea996c0
21 changed files with 571 additions and 228 deletions

View File

@@ -0,0 +1,28 @@
<?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\Event;
use App\Repository\Query\ExportQuery;
use Symfony\Contracts\EventDispatcher\Event;
class ExportItemsQueryEvent extends Event
{
private $query;
public function __construct(ExportQuery $query)
{
$this->query = $query;
}
public function getExportQuery(): ExportQuery
{
return $this->query;
}
}