MessagePreview.php
[Pman.Core] / MessagePreview.php
index afd0763..82cbfad 100644 (file)
@@ -67,14 +67,29 @@ class Pman_Core_MessagePreview extends Pman
     
     function coreEmailSendTest()
     {
-        $table = DB_DataObject::factory($_REQUEST['_table']);
+        $core_email = DB_DataObject::factory('core_email');
         
-        if($table->get($_REQUEST['_id'])){
+        if(!$core_email->get($_REQUEST['_id'])){
             $this->jerr('Invalid Message ID');
         }
         
-        if(empty($table->test_class)){
-            
+        if(empty($core_email->test_class)){
+            $this->jerr("[{$core_email->name}] does not has test class");
         }
+        
+        require_once "{$core_email->test_class}.php";
+        
+        $cls = str_replace('/', '_', $core_email->test_class);
+        
+        $x = new $cls;
+        
+        $method = "test_{$core_email->name}";
+        
+        if(!method_exists($x, $method)){
+            $this->jerr("{$method} does not exists in {$cls}");
+        }
+        
+        $x->
+        
     }
 }