我有以下帮助函数system/helper/wholesaler.php
:
<?php
function is_wholesaler() {
return $this->customer->getCustomerGroupId() != 1 ? TRUE : FALSE;
}
?>
我加载了助手system/startup.php
问题是当我尝试使用该函数时,我收到一个致命错误“致命错误:不在对象上下文中使用 $this”。有没有办法在助手中使用 $this ?
另一种选择是将 $this 作为参数发送is_wholesaler()
或添加函数并在我的 opencart 模板视图文件中library/customer.php
调用它。$this->customer->is_wholesaler()