refactored page actions to event subscriber (#2420)
This commit is contained in:
25
src/EventSubscriber/Actions/TimesheetTeamSubscriber.php
Normal file
25
src/EventSubscriber/Actions/TimesheetTeamSubscriber.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\EventSubscriber\Actions;
|
||||
|
||||
use App\Event\PageActionsEvent;
|
||||
|
||||
class TimesheetTeamSubscriber extends AbstractTimesheetSubscriber
|
||||
{
|
||||
public static function getActionName(): string
|
||||
{
|
||||
return 'timesheet_team';
|
||||
}
|
||||
|
||||
public function onActions(PageActionsEvent $event): void
|
||||
{
|
||||
$this->timesheetActions($event, 'admin_timesheet', 'admin_timesheet_edit');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user