commit
ffd6c42d2e
@ -0,0 +1,42 @@ |
|||||||
|
<?php |
||||||
|
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
|
namespace Chamilo\CoreBundle\Entity\Repository; |
||||||
|
|
||||||
|
use Doctrine\ORM\EntityRepository; |
||||||
|
use \Chamilo\UserBundle\Entity\User; |
||||||
|
|
||||||
|
/** |
||||||
|
* TrackECourseAccessRepository |
||||||
|
* |
||||||
|
* @package Chamilo\CoreBundle\Entity\Repository |
||||||
|
* @author Angel Fernando Quiroz Campos <angel.quiroz@beeznest.com> |
||||||
|
*/ |
||||||
|
class TrackECourseAccessRepository extends EntityRepository { |
||||||
|
|
||||||
|
/** |
||||||
|
* Get the last registered access by an user |
||||||
|
* @param \Chamilo\UserBundle\Entity\User $user The user |
||||||
|
* @return \ChamiloCoreBundle\TrackECourseAcess The access if exists. |
||||||
|
* Otherwise return null |
||||||
|
*/ |
||||||
|
public function getLastAccessByUser(User $user) |
||||||
|
{ |
||||||
|
if (empty($user)) { |
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
$lastAccess = $this->findBy( |
||||||
|
['userId' => $user->getId()], |
||||||
|
['courseAccessId' => 'DESC'], |
||||||
|
1 |
||||||
|
); |
||||||
|
|
||||||
|
if (!empty($lastAccess)) { |
||||||
|
return $lastAccess[0]; |
||||||
|
} |
||||||
|
|
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue