D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
idoso
/
adm
/
app
/
cpgre
/
Controllers
/
Filename :
VerEstLancResidModal.php
back
Copy
<?php namespace App\cpgre\Controllers; if (!defined('URL')) { header("Location: /"); exit(); } /** * Description of CpGreListarResidente * * @copyright (c) year, Carlos Marques - */ class VerResidModal { private $Dados; private $DadosId; public function verResid($DadosId ) { $this->DadosId = $DadosId; // var_dump($this->DadosId); if (!empty($this->DadosId)) { $verResid = new \App\gre\Models\GreVerResid(); $this->Dados['dadosResidente'] = $verResid->verResid($this->DadosId); // var_dump($this->Dados['dadosResidente']); } $carregarView = new \App\cpgre\core\ConfigView("cpgre/Views/Residente/verResidModal", $this->Dados); $carregarView->renderizarListar(); } }