D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
rosario
/
adm
/
app
/
cpgre
/
Controllers
/
Filename :
VerAutorizaModal.php
back
Copy
<?php namespace App\cpgre\Controllers; if (!defined('URL')) { header("Location: /"); exit(); } /** * Description of VerDepeModal * * @copyright (c) year, Carlos Marques - */ class VerAutorizaModal { private $Dados; private $DadosId; public function verPsaude() { $this->DadosId = filter_input_array(INPUT_GET, FILTER_DEFAULT); // $this->DadosId = $DadosId if (!empty($this->DadosId)) { $verPsaude = new \App\cpgre\Models\CpPsaudeAutorizaVer(); $this->Dados['dadosAut'] = $verPsaude->verPsaude($this->DadosId); // var_dump( $this->Dados['dadosAut']); } $carregarView = new \App\cpgre\core\ConfigView("cpgre/Views/ProgramaSaude/VerAutorizaModal",$this->Dados); $carregarView->renderizarListar(); } }