added avatars, show user teams in list, new team dashboard widgets (#1150)
This commit is contained in:
38
src/Repository/Loader/UserLoader.php
Normal file
38
src/Repository/Loader/UserLoader.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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\Repository\Loader;
|
||||
|
||||
use App\Entity\User;
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
|
||||
final class UserLoader implements LoaderInterface
|
||||
{
|
||||
/**
|
||||
* @var UserIdLoader
|
||||
*/
|
||||
private $loader;
|
||||
|
||||
public function __construct(EntityManagerInterface $entityManager)
|
||||
{
|
||||
$this->loader = new UserIdLoader($entityManager);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param User[] $users
|
||||
*/
|
||||
public function loadResults(array $users): void
|
||||
{
|
||||
$ids = array_map(function (User $user) {
|
||||
return $user->getId();
|
||||
}, $users);
|
||||
|
||||
$this->loader->loadResults($ids);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user