X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=MailTemplateList.php;h=64eb9c626eb543f94534248e9fd51855c1e86ec9;hp=f6e0bdc3bf78fc9cd5f9a46a710014f5b2d71844;hb=refs%2Fheads%2Fwip_edward_T5851_download_old_offer_sheet;hpb=d221e8dd4c6962e8eb9bc2081331e2405854316b diff --git a/MailTemplateList.php b/MailTemplateList.php index f6e0bdc3..64eb9c62 100644 --- a/MailTemplateList.php +++ b/MailTemplateList.php @@ -5,19 +5,19 @@ 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://' . $fopts['host'] . $this->rootURL; + $base = 'http://' . $_SERVER['SERVER_NAME'] . $this->rootURL; - $path = '/home/edward/gitlive/web.madeinnz/Pman/Shop/templates/mail/orderDetails.body.html'; - - $data = $this->convertStyle($base, $path, false); - - print_r($data);exit; +// $path = '/home/edward/gitlive/web.madeinnz/Pman/Shop/templates/mail/register.body.html'; +// +// $data = $this->convertStyle($base, $path, false); +// +// print_r($data);exit; $ret = array(); @@ -34,7 +34,7 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle } $path = "$dir/mail/$entry"; - print_r($path);exit; + $ret[] = array( 'file' => $entry, 'content' => $this->convertStyle($base, $path, false) @@ -45,8 +45,8 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle } } - exit; -// $this->jok($ret); + + $this->jok($ret); }