打开购物车如何获取当前的客户信息?

时间:2014-04-09 06:30:03

标签: php opencart

我创建了以下控制器:

class ControllerCommonTestSMS extends Controller
{
    function index()
    {
       //  action
    }
}

但是如果我添加以下行,则会抛出错误,该函数未定义:

$this->customer->isLogged();

1 个答案:

答案 0 :(得分:-2)

class ControllerCommonTestSMS extends Controller
{
    function index()
    {
       if (!$this->customer->isLogged()) {

        //code to be execu

        }
    }
}

这很好。