0

我有一个类来设置我的 smarty 实例:

class View {
    protected $templateEngine;
    protected $templateExtension = '.tpl';


    public function __construct(){
        global $ABS_PUBLIC_PATH;
        global $ABS_PUBLIC_URL;
        $this->templateEngine = new Smarty();
        $this->templateEngine->error_reporting = E_ALL & ~E_NOTICE;
        $this->templateEngine->setTemplateDir($ABS_PUBLIC_PATH . '/templates/');
        $this->templateEngine->setCompileDir($ABS_PUBLIC_PATH . '/templates_c/');
        $this->templateEngine->assign('ABS_PUBLIC_URL', $ABS_PUBLIC_URL);       

        if(isset($_SESSION['loggedIn'])){
            $this->assign('session', $_SESSION);
        }
    }

    public function assign($key, $value){
        $this->templateEngine->assign($key, $value);
    }

    public function display($templateName){
         $this->templateEngine->display($templateName . $this->templateExtension);
    }

    public function fetch($templateName){
         $this->templateEngine->fetch($templateName . $this->templateExtension);
    }
}

然后在我的函数中,我使用这样的类:

public function showMeSomething()
    {
        $view = new View();
        $view->assign('session', $_SESSION);
        $view->display('header');
        $view->display('index');
        $view->display('footer');
    }

现在,我正在尝试将一些数据提取到一个变量中,以便也从我的模板文件中发送电子邮件。不幸的是,这个 var_dumps 下面(它们都是)输出NULL- 即使引用的模板文件中有很多 HTML。此外,将单词更改fetchdisplay以下将正确显示模板文件。因此,问题肯定出在 fetch 命令中。我不确定如何继续调试。

function emailPrep($data,){
    $mailView = new View();

    $emailHTML = $mailView->fetch('myEmail');   
    var_dump($mailView->fetch("myEmail"));
    var_dump($emailHTML);
}
4

1 回答 1

1

Your code must be

public function fetch($templateName){
     return $this->templateEngine->fetch($templateName . $this->templateExtension);
}
于 2013-11-10T10:34:39.317 回答