mirror of
https://github.com/wallabag/wallabag.git
synced 2025-10-15 19:42:08 +00:00
Fix tags count in menu
Move enable cache for Tag in the Entity because function `find*` should return result and not a Query
This commit is contained in:
parent
9d7dd6b0d2
commit
faa86e06ba
4 changed files with 46 additions and 46 deletions
|
@ -7,17 +7,45 @@ use Doctrine\ORM\EntityRepository;
|
|||
class TagRepository extends EntityRepository
|
||||
{
|
||||
/**
|
||||
* Find Tags.
|
||||
* Find all tags per user.
|
||||
*
|
||||
* @param int $userId
|
||||
* @param int $cacheLifeTime Duration of the cache for this query
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function findAllTags($userId, $cacheLifeTime = null)
|
||||
{
|
||||
$query = $this->createQueryBuilder('t')
|
||||
->select('t')
|
||||
->leftJoin('t.entries', 'e')
|
||||
->where('e.user = :userId')->setParameter('userId', $userId)
|
||||
->groupBy('t.slug')
|
||||
->getQuery();
|
||||
|
||||
if (null !== $cacheLifeTime) {
|
||||
$query->useQueryCache(true);
|
||||
$query->useResultCache(true);
|
||||
$query->setResultCacheLifetime($cacheLifeTime);
|
||||
}
|
||||
|
||||
return $query->getArrayResult();
|
||||
}
|
||||
|
||||
/**
|
||||
* Find all tags with associated entries per user.
|
||||
*
|
||||
* @param int $userId
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function findAllTags($userId)
|
||||
public function findAllTagsWithEntries($userId)
|
||||
{
|
||||
return $this->createQueryBuilder('t')
|
||||
->leftJoin('t.entries', 'e')
|
||||
->where('e.user = :userId')->setParameter('userId', $userId);
|
||||
->where('e.user = :userId')->setParameter('userId', $userId)
|
||||
->getQuery()
|
||||
->getResult();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue