X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=MailTemplateList.php;h=64eb9c626eb543f94534248e9fd51855c1e86ec9;hp=cbdfb5b6434a3b3896d1e54680276e45e8fa76e9;hb=refs%2Fheads%2Fwip_edward_T5851_download_old_offer_sheet;hpb=75631191a798ddc6f19711e2724f905c8237aaef diff --git a/MailTemplateList.php b/MailTemplateList.php index cbdfb5b6..64eb9c62 100644 --- a/MailTemplateList.php +++ b/MailTemplateList.php @@ -5,15 +5,15 @@ require_once 'ConvertStyle.php'; class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle { - function get() + function get($v, $opts=array()) { $fopts = HTML_FlexyFramework::get()->HTML_Template_Flexy; $templateDir = explode(PATH_SEPARATOR, $fopts['templateDir']); -// $base = 'http://' . $_SERVER['SERVER_NAME'] . $this->rootURL; + $base = 'http://' . $_SERVER['SERVER_NAME'] . $this->rootURL; -// $path = '/home/edward/gitlive/web.madeinnz/Pman/Shop/templates/mail/orderShipment.body.html'; +// $path = '/home/edward/gitlive/web.madeinnz/Pman/Shop/templates/mail/register.body.html'; // // $data = $this->convertStyle($base, $path, false); // @@ -33,11 +33,11 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle continue; } - $file = "$dir/mail/$entry"; + $path = "$dir/mail/$entry"; $ret[] = array( 'file' => $entry, - 'content' => $this->convertStyle('', $file, false) + 'content' => $this->convertStyle($base, $path, false) ); }