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