对于我的 magento 后端,我需要一个包含不同客户信息的链接。所以我想从后端获取特定的信息,但我不知道如何。我已经查看了 adminhtml/.../template/sales/order/view/info.phtml 并找到了以下行:
<?php echo $this->htmlEscape($_order->getCustomerName()) ?>
这很好,但我需要客户名称、-街道、-邮政编码、城市的不同变量来建立这样的链接:www.domain.de/category&name=CustomerName&Street=CustomerStreet& ....我怎样才能得到这些变量?非常感谢每一个回答!!