aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
authorNicolas Hart <contact@nclshart.net>2017-08-21 10:36:56 +0200
committerNicolas Hart <contact@nclshart.net>2017-08-21 10:45:48 +0200
commit511f1ce1e87e0f30a455ca6ed73e008bfd557f83 (patch)
treed108bbcb2c285c7d9313fcfa4b42b7fe3fabffd2 /src/Wallabag/CoreBundle/Repository/EntryRepository.php
parent4d2758dfa0f12ff07da6cf907de7737f19219fea (diff)
downloadwallabag-511f1ce1e87e0f30a455ca6ed73e008bfd557f83.tar.gz
wallabag-511f1ce1e87e0f30a455ca6ed73e008bfd557f83.tar.zst
wallabag-511f1ce1e87e0f30a455ca6ed73e008bfd557f83.zip
Add reload entry command
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository/EntryRepository.php')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index d70d6ca6..9a30cd79 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -365,6 +365,23 @@ class EntryRepository extends EntityRepository
365 } 365 }
366 366
367 /** 367 /**
368 * @param int $userId
369 *
370 * @return array
371 */
372 public function getAllEntriesId($userId = null)
373 {
374 $qb = $this->createQueryBuilder('e')
375 ->select('e.id');
376
377 if (null !== $userId) {
378 $qb->where('e.user = :userid')->setParameter(':userid', $userId);
379 }
380
381 return $qb->getQuery()->getArrayResult();
382 }
383
384 /**
368 * Find all entries by url and owner. 385 * Find all entries by url and owner.
369 * 386 *
370 * @param $url 387 * @param $url