123 Posts
Understanding the cache of Prestashop 1.7 (and Symfony)
Cache allows your customers to enhance their shopping experience by greatly improving page load. For example, each time a customer searches for iphone 8
in your store, Prestashop...
Controller lifecycle in PrestaShop 1.7
Execution order of the controllerβs functions : classes/controller/Controller.php :
Use Db, the database class in PrestaShop 1.7
Tired of using raw SQL? SELECT * from _DB_PREFIX_.customer
is dead! Use the chainable API provided by Prestashop with its DbQuery
class:
Create a new front controller from scratch (Part 2/2) [Prestashop 1.7]
Prestashop can be used to display any page that you want. Either itβs pure HTML or templated data with Smarty, or even Twig since Prestashop 1.7! In this tutorial, we...
Generate URLs and links in Prestashop 1.7
You always need to generate your links and URLs. Hardcoded ones are a really bad habit. Coming from a Symfony environment, Iβm familiar with $router->generate('my-route')
but how does...
Embed a Symfony controller into a Prestashop controller
We are migrating from 100% Symfony to Prestashop 1.7 but we would like to keep and re-use our existing codebase. Hereβs a how-to.