45 lines
662 B
PHP
Executable File
45 lines
662 B
PHP
Executable File
<?php
|
|
|
|
namespace Vn\Web;
|
|
|
|
class Report
|
|
{
|
|
var $db;
|
|
var $name;
|
|
var $html;
|
|
|
|
function __construct ($db, $reportName, $params)
|
|
{
|
|
$this->db = $db;
|
|
$this->name = $reportName;
|
|
|
|
extract ($params);
|
|
|
|
\Vn\Lib\Locale::addPath ("reports/$reportName");
|
|
|
|
ob_start ();
|
|
include __DIR__.'/report.html.php';
|
|
$this->html = ob_get_contents ();
|
|
ob_end_clean ();
|
|
|
|
if (isset ($title))
|
|
$this->title = $title;
|
|
}
|
|
|
|
function getTitle ()
|
|
{
|
|
return $this->title;
|
|
}
|
|
|
|
function getHtml ()
|
|
{
|
|
return $this->html;
|
|
}
|
|
|
|
function sendMail ($mail)
|
|
{
|
|
Mailer::send ($this->db, $mail, $this->html, $this->title);
|
|
}
|
|
}
|
|
|