* fix timing issue in timesheet edit form with deactivated rounding * bump packages * only show update messages for newer plugin versions * replace deprecated method * remove internal from API * remove technical terms from translation * prevent calls to internal symfony methods * helper method to flag entry as modified * support meta-fields in weekly-hourse view * fix running timesheets were deleted in weekly-hourse
26 lines
574 B
PHP
26 lines
574 B
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\Event;
|
|
|
|
use App\Repository\Query\TimesheetQuery;
|
|
|
|
/**
|
|
* Dynamically find possible meta fields for the quick-entry screen.
|
|
*
|
|
* @method TimesheetQuery getQuery()
|
|
*/
|
|
final class QuickEntryMetaDisplayEvent extends AbstractMetaDisplayEvent
|
|
{
|
|
public function __construct(TimesheetQuery $query)
|
|
{
|
|
parent::__construct($query, 'quick-entry');
|
|
}
|
|
}
|