ServidorAutenticacaoRepository.php
885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
namespace Cacic\CommonBundle\Entity;
use Doctrine\ORM\EntityRepository;
/**
*
* Reposit�rio de m�todos de consulta em DQL
* @author lightbase
*
*/
class ServidorAutenticacaoRepository extends EntityRepository
{
public function paginar( \Knp\Component\Pager\Paginator $paginator, $page = 1 )
{
$_dql = "SELECT s
FROM CacicCommonBundle:ServidorAutenticacao s
GROUP BY s";
return $paginator->paginate(
$this->getEntityManager()->createQuery( $_dql ),
$page,
10
);
}
/**
*
* M�todo de listagem dos servidores cadastrados
*/
public function listar()
{
$_dql = "SELECT s
FROM CacicCommonBundle:ServidorAutenticacao s
GROUP BY s";
$query = $this->getEntityManager()->createQuery( $_dql );
return $query->getArrayResult();
}
}