slash197
slash197

Reputation: 9034

Accessing prestashop context

I am developing a prestashop tool which will act as a helper tool for its users. The problem I'm facing is that this will be a stand-alone web app, residing next to a prestashop installation on a server.

My question is how can I tap into prestashop's context to get the signed in user if at all possible? I was thinking to include a core model from prestashop but I have no idea how that works.

If this was a module I could simply access it by calling

$this->context

Upvotes: 1

Views: 160

Answers (1)

joseantgv
joseantgv

Reputation: 2023

Include these scripts:

include(dirname(__FILE__).'/config/config.inc.php');
include(dirname(__FILE__).'init.php');

setting up the correct path.

Upvotes: 3

Related Questions