php - open cart how to get current customer info? -


i have created following controller:

class controllercommontestsms extends controller {     function index()     {        //  action     } } 

but if add following line, throws error function undefined:

$this->customer->islogged(); 

class controllercommontestsms extends controller {     function index()     {        if (!$this->customer->islogged()) {          //code execu          }     } } 

this working fine.


Comments

Popular posts from this blog

Why can rails not find a route created by a helper? -

javascript - jquery or ashx not working -

php - Redirect and hide target URL -