D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
idoso
/
adm
/
app
/
gre
/
Controllers
/
Filename :
GerarBoleto.php
back
Copy
<?php namespace App\gre\Controllers; if (!defined('URL')) { header("Location: /"); exit(); } /** * Description of GerarBoleto * * @copyright (c) year, Cesar Szpak - Celke */ class GerarBoleto { private $Dados; public function gerBol() { $gerBol = new \App\gre\Models\GreGerarBoleto(); $gerBol->gerBol($this->Dados); $UrlDestino = URLADM . 'boleto/listar'; header("Location: $UrlDestino"); } }