MailTemplateList.php
[Pman.Core] / MailTemplateList.php
index 95ed351..2949070 100644 (file)
@@ -10,9 +10,15 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle
         $fopts = HTML_FlexyFramework::get()->HTML_Template_Flexy;
         
         $templateDir = explode(PATH_SEPARATOR, $fopts['templateDir']);
-        
+        print_r($_SERVER['SERVER_NAME']);exit;
         $base = 'http://' . $fopts['host'] . $this->rootURL;
         
+//        $path = '/home/edward/gitlive/web.madeinnz/Pman/Shop/templates/mail/orderShipment.body.html';
+//        
+//        $data = $this->convertStyle($base, $path, false);
+//        
+//        print_r($data);exit;
+        
         $ret = array();
         
         foreach ($templateDir as $dir){
@@ -31,7 +37,7 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle
                     
                     $ret[] = array(
                         'file' => $entry,
-                        'content' => $this->convertStyle()
+                        'content' => $this->convertStyle($base, $path, false)
                     );
                 }
                 
@@ -39,8 +45,8 @@ class Pman_Core_MailTemplateList extends Pman_Core_ConvertStyle
             }
             
         }
-        exit;
-//        $this->jok($ret);
+
+        $this->jok($ret);
         
     }