X-CART从后端获取数据并显示在前端
我正在开发 X-Cart 模块。我需要前端的后端配置值。在管理/配置文件中,我创建了一个数组,其中包含我需要在根文件夹中的 adv_search.php 中使用它的值。我不知道如何将该数组传递给 adv_search.php。
提前致谢。
I am working on a X-Cart Module. I need the backend configuration values to the front end. In admin/configuration file I have created an array which contains the value which I need to use it in adv_search.php which is in the root folder. I don't know how to pass that array to adv_search.php.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前尚不清楚如何存储配置值。将它们存储在表 xcart_config 中并直接在 php 文件中以 $config['Option-category']['option_name'] 和在 Smarty 模板中的 {$config.Option-category.option_name} 形式访问它们可能会更容易。
或者只需在模块的 config.php 文件中定义一个数组,该数组将在 php 脚本中随处可用。例如,查看 module/UPS_OnLine_Tools/config.php 文件。
It is not quite clear how you store the configuration values. It may be easier to store them in the table xcart_config and access them directly as $config['Option-category']['option_name'] in php files and {$config.Option-category.option_name} in the Smarty-templates.
Or just define an array in module's config.php file and this array will be available everywhere in php-scripts. Look at the modules/UPS_OnLine_Tools/config.php file for example.