与 osCommerce 中的 Google Checkout 交易相关的 order_products 列
我正在将 Google Checkout 与 osCommerce 结合使用,并想知道 order_products
数据库表的哪一列与交易相关。
Google Checkout 显示每种产品的价格详细信息,我想知道该详细信息来自代码中的何处。
I am using Google Checkout with osCommerce and want to know which column of the order_products
database table is connected with the transaction.
Google Checkout displays the price details of every product and I want to know from where in the code this detail comes from.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 osCommerce 中,支付模块有一个名为
process_button()
的方法。此方法绘制一个表单,其中包含付款方式所需的隐藏字段。对于 Google Checkout,它将绘制 Google 所需的字段来显示信息。
您可以检查
catalog/includes/modules/ payment/.php
该函数,以查看哪些字段发送到 Google Checkout 以显示信息。In osCommerce the payment modules have a method called
process_button()
.This method draws a form with the hidden fields the payment method needs. In the case of Google Checkout it will draw the fields needed by Google to show the information.
You can check in
catalog/includes/modules/payment/<your Google Checkout module>.php
that function to see which fields are sent to Google Checkout to show the information.