我可以使用
跟踪客户数据 $this->customer->getFirstName();
$this->customer->getLastName();
$this->customer->getEmail();
这样,有没有类似的方法来跟踪商店数据,如电子邮件,商店名称
例如:像这样$this->store->getEmail();
(这不起作用)
答案 0 :(得分:8)
使用以下内容:
$this->config->get('config_name'); // store name
$this->config->get('config_title'); // store title
$this->config->get('config_owner'); // store owner name
$this->config->get('config_email'); // store email