spacejewel-ipn-communication/source/defs/RenderEngine/Render.php
Miguel Nogueira 0ea8c6fb72 Changes how different classes use the Config class.
They were trying to use it as an array instead of using it's helper method that actually returned a usable array.
Fixes #4.
2018-06-08 15:16:16 +00:00

45 lines
1.0 KiB
PHP

<?php
class EmailRenderer
{
private $templateDir;
public $twig;
public $tmeplateList = [
"accountBillingInformation",
"accountCancellationNotice",
"accountInformationUpdated",
"accountInstallation",
"accountRefunded",
"accounSubscriptionPaymentFailed"
];
public function __construct()
{
$config = new Config();
$cConfigArray = $config->getConfig();
$loader = new Twig_Loader_Filesystem($cConfigArray['templates']['templatesDirectory']);
$this->twig = new Twig_Environment($loader);
}
public function renderTemplate($Tmpl, Array $Data)
{
// $Data is an associative array of data
if(!in_array($this->templateList, $Tmpl))
{
throw new Exception("WARNING: Selected template not available");
}
else
{
return $this->twig->render($Tmpl, $Data);
}
}
}