X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=MailTemplateList.php;h=64eb9c626eb543f94534248e9fd51855c1e86ec9;hp=dfaf8e37fd1b27f05725ccc1d01cc1cd66a415a9;hb=refs%2Fheads%2Fwip_edward_T5851_download_old_offer_sheet;hpb=f85821a4fd0b33333a4760b55d3d40aef9d7aa58 diff --git a/MailTemplateList.php b/MailTemplateList.php index dfaf8e37..64eb9c62 100644 --- a/MailTemplateList.php +++ b/MailTemplateList.php @@ -1,17 +1,53 @@ 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){ + + if(!file_exists($dir . '/mail')){ + continue; + } + + if ($handle = opendir($dir . '/mail')) { + while (false !== ($entry = readdir($handle))) { + if ($entry == "." || $entry == ".." || !preg_match('/\.html$/', $entry)) { + continue; + } + + $path = "$dir/mail/$entry"; + + $ret[] = array( + 'file' => $entry, + 'content' => $this->convertStyle($base, $path, false) + ); + } + + closedir($handle); + } + + } -?> + $this->jok($ret); + + } + +}