AplicativoRepository.php
1.4 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
namespace Cacic\CommonBundle\Entity;
use Doctrine\ORM\EntityRepository;
/**
*
* Repositório de métodos de consulta em DQL
* @author lightbase
*
*/
class AplicativoRepository extends EntityRepository
{
public function paginar( \Knp\Component\Pager\Paginator $paginator, $page = 1 )
{
$_dql = "SELECT a.idAplicativo, a.nmAplicativo
FROM CacicCommonBundle:Aplicativo a
GROUP BY a.idAplicativo, a.nmAplicativo";
return $paginator->paginate(
$this->getEntityManager()->createQuery( $_dql )->getArrayResult(),
$page,
10
);
}
/**
*
* Método de listagem dos Aplicativos cadastrados
*/
public function listar()
{
$_dql = "SELECT a
FROM CacicCommonBundle:Aplicativo a
GROUP BY a.idAplicativo";
$query = $this->getEntityManager()->createQuery( $_dql );
return $query->getArrayResult();
}
public function listarAplicativosMonitorados( $idRede )
{
$_dql = "SELECT a, r, so
FROM CacicCommonBundle:Aplicativo a
JOIN a.idRede r
JOIN a.idSo so
WHERE a.nmAplicativo NOT LIKE '%#DESATIVADO#%'
AND r.idRede = :idRede";
return $this->getEntityManager()
->createQuery( $_dql )
->setParameter( 'idRede', $idRede )
->getArrayResult();
}
}