Beispiel #1
0
 public function executa()
 {
     $this->setJsInterno(array('assets/js/tabela.js', 'assets/plugins/datable/jquery.dataTables.min.js', 'assets/plugins/datable/dataTables.bootstrap.min.js', 'assets/js/custom/lista-clientes.js'));
     $this->setDados('titulo', 'Clientes');
     $dao = new PessoaDAO();
     $pessoas = $dao->getFaturasAbertas();
     $this->setDados('amigas', $pessoas);
     $this->setPagina('views/lista-clientes.php');
     $this->getCompleto();
 }