twif到tpl opencart 2.3.0.2

时间:2018-12-14 19:14:03

标签: php twig opencart2.3

嗨,我有一个用于2.3.0.2的模块,但是它为twig编写了一些代码,但不适用于2.3.0.2,请问有人可以帮助将此代码恢复为tpl。

product['model']<a style="cursor:pointer" onclick="refudt(this)"  data- 
type="model" data-pid="product['product_id']"> (?)</a>

{{ product.price }} <a style="cursor:pointer" onclick="refudt(this)"  data- 
type="price" data-pid="{{ product.product_id }}"> (?)</a>

 {{ product.name }}<a style="cursor:pointer" onclick="refudt(this)"  data- 
 type="name" data-pid="{{ product.product_id }}"> (?)</a></a>

{{ product.quantity }}<a style="cursor:pointer" onclick="refudt(this)"  
data-type="quantity" data-pid="{{ product.product_id }}"> (?)</a>

{{ total.text }}<a style="cursor:pointer" onclick="refudt(this)"  data- 
type="total" data-pid="{{total.order_total_id}}"> (?)</a>

1 个答案:

答案 0 :(得分:0)

这部分不是TWIG而不是php(tpl)

product['model']<a style="cursor:pointer" onclick="refudt(this)"  data- 
    type="model" data-pid="product['product_id']"> (?)</a>

最后一部分应如下所示:

<?php echo $product['price']; ?> <a style="cursor:pointer" onclick="refudt(this)"  data- 
type="price" data-pid="<?php echo $product['product_id']; ?>"> (?)</a>

 <?php echo $product['name']; ?><a style="cursor:pointer" onclick="refudt(this)"  data- 
 type="name" data-pid="<?php echo $product['product_id']; ?>"> (?)</a></a>

<?php echo $product['quantity']; ?><a style="cursor:pointer" onclick="refudt(this)"  
data-type="quantity" data-pid="<?php echo $product['product_id']; ?>"> (?)</a>

<?php echo $total['text']; ?><a style="cursor:pointer" onclick="refudt(this)"  data- 
type="total" data-pid="<?php echo $total['order_total_id']; ?>"> (?)</a>

你应该明白我希望...