generate entry "my tasks" dynamically

This commit is contained in:
2018-07-17 17:34:59 +02:00
parent f9221f9f90
commit e0e7376c1d
3 changed files with 25 additions and 2 deletions

View File

@@ -24,6 +24,8 @@ use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInt
use Chill\TaskBundle\Repository\SingleTaskRepository;
use Symfony\Component\Translation\TranslatorInterface;
use Chill\MainBundle\Entity\User;
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
use Chill\TaskBundle\Security\Authorization\TaskVoter;
/**
*
@@ -50,14 +52,22 @@ class UserMenuBuilder implements LocalMenuBuilderInterface
*/
public $translator;
/**
*
* @var AuthorizationCheckerInterface
*/
public $authorizationChecker;
public function __construct(
CountNotificationTask $counter,
TokenStorageInterface $tokenStorage,
TranslatorInterface $translator
TranslatorInterface $translator,
AuthorizationCheckerInterface $authorizationChecker
) {
$this->counter = $counter;
$this->tokenStorage = $tokenStorage;
$this->translator = $translator;
$this->authorizationChecker = $authorizationChecker;
}
public static function getMenuIds(): array
@@ -67,6 +77,10 @@ class UserMenuBuilder implements LocalMenuBuilderInterface
public function buildMenu($menuId, MenuItem $menu, array $parameters)
{
if (FALSE === $this->authorizationChecker->isGranted(TaskVoter::SHOW)) {
return;
}
$user = $this->tokenStorage->getToken()->getUser();
$ended = $this->counter->countNotificationEnded($user);
$warning = $this->counter->countNotificationWarning($user);
@@ -92,6 +106,14 @@ class UserMenuBuilder implements LocalMenuBuilderInterface
$warning,
-14);
}
$menu->addChild("My tasks", [
'route' => 'chill_task_single_my_tasks'
])
->setExtras([
'order' => -10,
'icon' => 'tasks'
]);
}
protected function addItemInMenu(MenuItem $menu, User $u, $message, $title, $status, $number, $order)