Helton Yawovi Posted July 29, 2014 Share Posted July 29, 2014 Hello everybody. I'm programming an add-on for my prestashop. And I need to take informations about the shopping basket. How can I do it. Help me Link to comment Share on other sites More sharing options...
vekia Posted July 30, 2014 Share Posted July 30, 2014 And I need to take informations about the shopping basket. when you define hook, function use $params variable, for example: public function hookTop($params){ // do something } $params variable is an array and contains cart object $params['cart']; voila ;-) Link to comment Share on other sites More sharing options...
Helton Yawovi Posted July 30, 2014 Author Share Posted July 30, 2014 ok thank you very much. I'll try it Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now