1

有谁知道如何.tpl在 prestashop 的文件中添加 php 代码..我尝试了很多但找不到任何解决方案..我想在我的.tpl文件中添加一个邮件功能

这是功能

<?php
    $name=$_REQUEST["name"];
    $email=$_REQUEST["email"];
    $matter=$_REQUEST["matter"];
    $subject=$name."has shared a weblink";
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    $contactMsg = '
    <html>
    <head>
    <title>Tell A Friend</title>
    </head>
    <body>
    <table>
    <tr>
    <td>E-mail: '.$email.' </td>
    </tr>
    <tr>
    <td>Comment: '.$matter.' </td>
    </tr>
    </table>
    </body>
    </html>
    ';
    $headers .= "from:abcd" . "\r\n";
    $headers .= "To: Info <info@abcd.in";
    $headers .= "reply-to:".$email."\r\n";
    $headers .= "Cc:".$email."\r\n";
    $headers .= 'Bcc: ' . "\r\n";
    if(mail($email, $subject, $contactMsg, $headers))
    {
    $_REQUEST = array();
    $error.="Mail Sent Successfully"; 
    }
    else
    {
    $error.="Error Mail Sent Fail!"; 
   // 
    }
 ?>

我尝试在块内编写代码..{php} {/php}但无法帮助以及如何查看error logprestashop

4

3 回答 3

1

您可以编辑控制器文件,例如。如果你想在 cms 页面中添加表单,你必须编辑这个/controller/CMSController.php

编辑这个

public function displayContent()
{
  parent::displayContent();
  self::$smarty->display(_PS_THEME_DIR_.'cms.tpl');
}

有了这个

public function displayContent()
{
 IF  ($_POST['submit_form']==1){
   // here submit action mail() for example
 }
  parent::displayContent();
  self::$smarty->display(_PS_THEME_DIR_.'cms.tpl');
}
于 2013-12-09T16:05:33.283 回答
0

最好php在模块控制器中添加函数类等,

{php}贬值是有原因的,因为它允许不良做法。Smarty 建议将包含的脚本放入 PHP 逻辑中(controllers,classes,functions)

于 2013-05-31T10:03:01.183 回答
0

在 .tpl 文件中使用 {php}{/php} 标记在某些版本的 Prestashop 中被关闭

我在使用 Prestashop 1.5.4.1 时遇到了同样的问题要打开它,请在文件 config/smarty.config.inc.php 中进行更改:

找到这些行(第 27 行到第 33 行)

...
define('_PS_SMARTY_DIR_', _PS_TOOL_DIR_.'smarty/');

require_once(_PS_SMARTY_DIR_.'Smarty.class.php');

global $smarty;
$smarty = new Smarty();
$smarty->setCompileDir(_PS_CACHE_DIR_.'smarty/compile');
...

将其更改为

...
define('_PS_SMARTY_DIR_', _PS_TOOL_DIR_.'smarty/');

require_once(_PS_SMARTY_DIR_.'SmartyBC.class.php');

global $smarty;
$smarty = new SmartyBC();
$smarty->setCompileDir(_PS_CACHE_DIR_.'smarty/compile');
...

...很快,使用 SmartyBC.class.php 而不是 Smarty.class.php

(警告:在模板文件中使用 {php}{/php} 标签在 Prestashop 中已被弃用!)

于 2013-06-02T09:33:39.527 回答