Files
kimai2/src/EventSubscriber/Actions/TeamSubscriber.php
Kevin Papst dad1b8b772 version 1.14.1 (#2532)
* no back links in modal pages
* remove unused service links to bountysource and gitter
* add validation for budget and time-budget fields
* display time budget if set
* remove console log
* sanitize DDE payloads
* do not show status and name in version string
2021-04-29 18:29:03 +02:00

56 lines
1.6 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\EventSubscriber\Actions;
use App\Entity\Team;
use App\Event\PageActionsEvent;
class TeamSubscriber extends AbstractActionsSubscriber
{
public static function getActionName(): string
{
return 'team';
}
public function onActions(PageActionsEvent $event): void
{
$payload = $event->getPayload();
/** @var Team $team */
$team = $payload['team'];
if ($team->getId() === null) {
return;
}
if ($this->isGranted('edit', $team)) {
$event->addAction('edit', ['url' => $this->path('admin_team_edit', ['id' => $team->getId()])]);
if ($this->isGranted('create_team')) {
$event->addAction('copy', ['url' => $this->path('team_duplicate', ['id' => $team->getId()])]);
}
}
if ($event->isIndexView() && $this->isGranted('delete', $team)) {
$event->addAction('trash', [
'url' => $this->path('delete_team', ['id' => $team->getId()]),
'class' => 'api-link',
'attr' => [
'data-event' => 'kimai.teamDelete kimai.teamUpdate',
'data-method' => 'DELETE',
'data-question' => 'confirm.delete',
'data-msg-error' => 'action.delete.error',
'data-msg-success' => 'action.delete.success'
]
]);
}
}
}