X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=MailTemplateList.php;h=64eb9c626eb543f94534248e9fd51855c1e86ec9;hp=104b1d7f8312d6d7c22e303602efe17bdbd99ba4;hb=refs%2Fheads%2Fwip_alan_T5884_add_photo_to_report;hpb=899c60ba174733367ca3b386cd427c81254510fa diff --git a/MailTemplateList.php b/MailTemplateList.php index 104b1d7f..64eb9c62 100644 --- a/MailTemplateList.php +++ b/MailTemplateList.php @@ -5,13 +5,20 @@ require_once 'ConvertStyle.php'; class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle { - function get() + function get($v, $opts=array()) { -// print_r($this);exit; $fopts = HTML_FlexyFramework::get()->HTML_Template_Flexy; $templateDir = explode(PATH_SEPARATOR, $fopts['templateDir']); + $base = 'http://' . $_SERVER['SERVER_NAME'] . $this->rootURL; + +// $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(); foreach ($templateDir as $dir){ @@ -25,19 +32,21 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle if ($entry == "." || $entry == ".." || !preg_match('/\.html$/', $entry)) { continue; } - echo "$dir/mail/$entry
"; -// $ret[] = array( -// 'file' => $entry, -// 'content' => $this->convertStyle("$dir/mail/$entry") -// ); + + $path = "$dir/mail/$entry"; + + $ret[] = array( + 'file' => $entry, + 'content' => $this->convertStyle($base, $path, false) + ); } closedir($handle); } } - exit; -// $this->jok($ret); + + $this->jok($ret); }