Release 2.34 (#5465)
* 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
This commit is contained in:
25
src/Event/QuickEntryMetaDisplayEvent.php
Normal file
25
src/Event/QuickEntryMetaDisplayEvent.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user