gpt4 book ai didi

php - 如何在 PrestaShop 的 .tpl 文件中创建全局变量?

转载 作者:行者123 更新时间:2023-11-27 23:38:16 30 4
gpt4 key购买 nike

我想创建一个全局变量,它将在 .tpl 文件中设置和获取。应该为用户(登录或未登录)保存全局变量

最佳答案

Override -> classes -> controller -> FrontController.php 中创建了一个覆盖

并添加代码:

<?php

use PrestaShop\PrestaShop\Adapter\Cart\CartPresenter;
use PrestaShop\PrestaShop\Adapter\ObjectPresenter;
use PrestaShop\PrestaShop\Adapter\Configuration as ConfigurationAdapter;
use PrestaShop\PrestaShop\Adapter\Image\ImageRetriever;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Debug\Debug;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\Config\FileLocator;

class FrontController extends FrontControllerCore
{
public function initContent()
{
$this->context->smarty->assign(array(
'VARIABLE_NAME' => VARIABLE_VALUE,
));
return parent::initContent();
}
}
?>

关于php - 如何在 PrestaShop 的 .tpl 文件中创建全局变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57143786/

30 4 0
文章推荐: html -
文章推荐: c++ - tm_wday 返回 0-6 范围之外的大整数
文章推荐: html - 标签与
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com