X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=MailTemplateList.php;h=64eb9c626eb543f94534248e9fd51855c1e86ec9;hp=1826c21fb7beff30a4004ad492c021dcc7612fb6;hb=refs%2Fheads%2Fwip_edward_T5851_download_old_offer_sheet;hpb=ae84cc8c9acc1db49d892defc1442df61b743eec diff --git a/MailTemplateList.php b/MailTemplateList.php index 1826c21f..64eb9c62 100644 --- a/MailTemplateList.php +++ b/MailTemplateList.php @@ -1,49 +1,53 @@ getAuthUser(); - if (!$au) { - die("NOT authenticated"); - } - $this->authUser = $au; - return true; - } - - 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; + +// $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){ - echo "$dir
"; + if(!file_exists($dir . '/mail')){ continue; } - - if ($handle = opendir($dir . '/')) { + + if ($handle = opendir($dir . '/mail')) { while (false !== ($entry = readdir($handle))) { - if ($entry == "." || $entry == "..") { + if ($entry == "." || $entry == ".." || !preg_match('/\.html$/', $entry)) { continue; } - echo "$entry
"; + $path = "$dir/mail/$entry"; + + $ret[] = array( + 'file' => $entry, + 'content' => $this->convertStyle($base, $path, false) + ); } closedir($handle); } } - exit; - $this->jdata(array(array('name' => 'aa', 'body'=> 'test'))); + + $this->jok($ret); - print_r(array_unique($fopts->templateDir)); - exit; } }