OpenCart如何将商店详细信息提供给控制器

时间:2014-01-09 06:45:21

标签: php opencart

我可以使用

跟踪客户数据
   $this->customer->getFirstName();
   $this->customer->getLastName();
   $this->customer->getEmail();

这样,有没有类似的方法来跟踪商店数据,如电子邮件,商店名称 例如:像这样$this->store->getEmail(); (这不起作用)

1 个答案:

答案 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