- Created `pp_carousel.tpl` for rendering product carousel with Swiper integration. - Added `plan.md` detailing module architecture, database schema, and implementation steps. - Initialized log files for development and production environments.
17 lines
464 B
PHP
17 lines
464 B
PHP
<?php
|
|
/**
|
|
* Project-Pro Karuzela Produktów
|
|
*
|
|
* @author Project-Pro <kontakt@project-pro.pl>
|
|
* @copyright Project-Pro
|
|
* @license https://www.project-pro.pl
|
|
*/
|
|
|
|
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
|
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
|
|
header('Cache-Control: no-store, no-cache, must-revalidate');
|
|
header('Cache-Control: post-check=0, pre-check=0', false);
|
|
header('Pragma: no-cache');
|
|
header('Location: ../');
|
|
exit;
|