Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
MathiasReker committed Jul 26, 2019
0 parents commit 87eb228
Show file tree
Hide file tree
Showing 15 changed files with 1,552 additions and 0 deletions.
12 changes: 12 additions & 0 deletions config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" ?>
<module>
<name>securitylite</name>
<displayName><![CDATA[Security Lite]]></displayName>
<version><![CDATA[2.0.0]]></version>
<description><![CDATA[This module increases the overall security of your PrestaShop website.]]></description>
<author><![CDATA[Mathias Reker]]></author>
<tab><![CDATA[administration]]></tab>
<is_configurable>1</is_configurable>
<need_instance>0</need_instance>
<limited_countries></limited_countries>
</module>
25 changes: 25 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
* 2019 Mathias R.
*
* NOTICE OF LICENSE
*
* This file is licensed under the Software License Agreement
* With the purchase or the installation of the software in your application
* you accept the license agreement
*
* @author Mathias R.
* @copyright Mathias R.
* @license Commercial license (You can not resell or redistribute this software.)
*/

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;
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 87eb228

Please sign in to comment.