Files
wyczarujprezent.pl/modules/an_homeproducts/sql/uninstall.php
Jacek Pyziak 64bcc1a6be Add new templates and update existing ones for An Home Products module
- Created new index.php files for various directories to establish structure.
- Added form.tpl and index.php for form helpers to enhance form handling.
- Introduced suggestions.tpl and top.tpl for improved admin interface.
- Implemented ajax-products.tpl and banners.tpl for front-end product display.
- Developed content.tpl and widget-blocks.tpl for dynamic content rendering.
- Enhanced widget-tabs.tpl and widget-wrapper.tpl for better tabbed navigation.
- Included necessary licensing information in all new files.
2025-05-16 14:21:29 +02:00

33 lines
1.3 KiB
PHP

<?php
/**
* 2022 Anvanto
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* @author Anvanto <anvantoco@gmail.com>
* @copyright 2022 Anvanto
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of Anvanto
*/
if (!defined('_PS_VERSION_')) {
exit;
}
$sql = [];
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'an_homeproducts_blocks`';
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'an_homeproducts_blocks_shop`';
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'an_homeproducts_blocks_lang`';
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'an_homeproducts_blocks_products`';
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'an_homeproducts_blocks_categories`';
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'an_homeproducts_banners`';
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'an_homeproducts_banners_lang`';
$sql[] = 'DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'an_homeproducts_banners_shop`';
return $sql;