Prestashop 1.5:带有ajax调用的后台模块

时间:2014-01-10 13:35:20

标签: php prestashop prestashop-1.5

我正在开发一个Prestashop后台模块,后端将响应ajax调用。在php文件“/modules/mymodule/ajax/do-something.php”中,如何检查管理员是否已登录?

1 个答案:

答案 0 :(得分:0)

这应该可以解决问题:

include_once('../../config/config.inc.php');
include_once('../../config/settings.inc.php');
include_once('../../classes/Cookie.php');

if( Context::getContext()->customer->isLogged() ) {
    // welcome
}
else{
    // please login  
}

another SO question中找到。