Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
PrestaShop Module Development

You're reading from  PrestaShop Module Development

Product type Book
Published in Nov 2014
Publisher
ISBN-13 9781783280254
Pages 254 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Fabien Serny Fabien Serny
Profile icon Fabien Serny

Table of Contents (19) Chapters

PrestaShop Module Development
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Creating a New Module 2. Hooks 3. Using Context and its Methods 4. Building Module Updates 5. Front Controllers, Object Models, and Overrides 6. Admin Controllers and Hooks 7. The Carrier Module 8. The Payment Module 9. Multistore 10. Security and Performance Native Hooks Index

Working with a third-party API


For most payment modules, you will have to work with a third-party API. In this section, we will build a payment method on a very simple API and we will also learn how to save the transaction ID. We will use the api.php script attached to the code of this chapter. You can open it if you want to see how it works, but in summary, we need the following variables as POST values:

  • api_credentials_id: For this, in our case, we have to send the presta string value

  • id_cart: This is the cart ID

  • total_to_pay: This is the total amount of the order

  • validation_url: This is the URL that the api.php script will call to confirm that the order has been paid

  • return_url: This is the URL that the customer will be redirected to if he or she goes back

  • cancel_url: This is the URL that the customer will be redirected to if the payment fails (in our case, there is no real transaction; a payment will be always accepted, so this URL will not be used)

  • payment_token: This corresponds to...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}