* @copyright 2007-2012 PrestaShop SA * @version Release: $Revision: 7723 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ require_once(realpath(dirname(__FILE__)) . '/ContextCore.php'); class Context extends ContextCore { protected function __construct() { global $cart, $customer, $cookie, $link, $country, $employee, $controller, $language, $currency, $tab, $shop, $smarty; $this->customer = $customer; $this->cookie = $cookie; $this->link = $link; $this->country = $country; $this->employee = $employee; $this->controller = $controller; $this->language = $language; $this->currency = $currency; $this->tab = $tab; $this->shop = $shop; $this->tab = $tab; $this->smarty = $smarty; } }