Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
- migration to "faktiva" organization maintainance
- cleanup PS from "old" module name
- fixed source files' header
  • Loading branch information
drAlberT committed Oct 5, 2016
1 parent ace275c commit a8869aa
Show file tree
Hide file tree
Showing 15 changed files with 209 additions and 132 deletions.
21 changes: 21 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
<?php

$header = <<<EOF
This file is part of the "Prestashop SEO ToolKit" module.
(c) Faktiva (http://faktiva.com)
NOTICE OF LICENSE
This source file is subject to the CC-BY-4.0 license that is
available at the URL https://creativecommons.org/licenses/by/4.0/
DISCLAIMER
This code is provided as is without any warranty.
No promise of being safe or secure
@author AlberT <[email protected]>
@license https://creativecommons.org/licenses/by/4.0/ CC-BY-4.0
@source https://github.com/faktiva/prestashop-seo-tk
EOF;

Symfony\CS\Fixer\Contrib\HeaderCommentFixer::setHeader($header);

return Symfony\CS\Config\Config::create()
->setUsingCache(true)
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->fixers(array(
'header_comment',
'long_array_syntax',
'single_quote',
'pre_increment',
Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>faktiva-seo-tk</name>
<displayName><![CDATA[Faktiva SEO ToolKit]]></displayName>
<version><![CDATA[1.3.0]]></version>
<version><![CDATA[1.4.0]]></version>
<description><![CDATA[Handles a few SEO related improvements, such as &#039;hreflang&#039;, &#039;canonical&#039; and &#039;noindex&#039;.]]></description>
<author><![CDATA[Faktiva]]></author>
<tab><![CDATA[seo]]></tab>
Expand Down
63 changes: 34 additions & 29 deletions zzseotk.php → faktiva_seo_tk.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
<?php

/**
/*
* This file is part of the "Prestashop SEO ToolKit" module.
*
* (c) Faktiva (http://faktiva.com)
*
* NOTICE OF LICENSE
* This source file is subject to the License terms Academi cFined in the file LICENSE.md
* This source file is subject to the CC-BY-4.0 license that is
* available at the URL https://creativecommons.org/licenses/by/4.0/
*
* DISCLAIMER
* This code is provided as is without any warranty.
* No promise of being safe or secure
*
* @author ZiZuu.com <[email protected]>
* @link source available at https://github.com/ZiZuu-store/
* @author AlberT <[email protected]>
* @license https://creativecommons.org/licenses/by/4.0/ CC-BY-4.0
* @source https://github.com/faktiva/prestashop-seo-tk
*/

if (!defined('_PS_VERSION_')) {
Expand All @@ -21,7 +26,7 @@
include_once __DIR__.'/tools/debug.php';
}

class zzseotk extends Module
class faktiva_seo_tk extends Module
{
private $_controller;

Expand Down Expand Up @@ -73,20 +78,20 @@ class zzseotk extends Module

public function __construct()
{
$this->name = 'zzseotk';
$this->author = 'ZiZuu Store';
$this->name = 'faktiva_seo_tk';
$this->author = 'Faktiva';
$this->tab = 'seo';
$this->version = '1.3.0';
$this->version = '1.4.0';
$this->need_instance = 0;
$this->bootstrap = true;
$this->ps_versions_compliancy = array('min' => '1.5.0.1', 'max' => _PS_VERSION_);

parent::__construct();

$this->displayName = $this->l('ZiZuu SEO ToolKit');
$this->displayName = $this->l('Faktiva SEO ToolKit');
$this->description = $this->l('Handles a few SEO related improvements, such as \'hreflang\', \'canonical\' and \'noindex\'.');

$this->confirmUninstall = $this->l('Are you sure you want to uninstall "ZiZuu SEO ToolKit"?');
$this->confirmUninstall = $this->l('Are you sure you want to uninstall "Faktiva SEO ToolKit"?');
}

public function install()
Expand All @@ -97,18 +102,18 @@ public function install()

return parent::install()
&& $this->registerHook('header')
&& Configuration::updateValue('ZZSEOTK_HREFLANG_ENABLED', false)
&& Configuration::updateValue('ZZSEOTK_CANONICAL_ENABLED', false)
&& Configuration::updateValue('ZZSEOTK_NOBOTS_ENABLED', false)
&& Configuration::updateValue('FKVSEOTK_HREFLANG_ENABLED', false)
&& Configuration::updateValue('FKVSEOTK_CANONICAL_ENABLED', false)
&& Configuration::updateValue('FKVSEOTK_NOBOTS_ENABLED', false)
;
}

public function uninstall()
{
return parent::uninstall()
&& Configuration::deleteByName('ZZSEOTK_HREFLANG_ENABLED')
&& Configuration::deleteByName('ZZSEOTK_CANONICAL_ENABLED')
&& Configuration::deleteByName('ZZSEOTK_NOBOTS_ENABLED')
&& Configuration::deleteByName('FKVSEOTK_HREFLANG_ENABLED')
&& Configuration::deleteByName('FKVSEOTK_CANONICAL_ENABLED')
&& Configuration::deleteByName('FKVSEOTK_NOBOTS_ENABLED')
;
}

Expand All @@ -127,16 +132,16 @@ public function getContent()
'</div>';

if (Tools::isSubmit('submitOptionsconfiguration')) {
if (null!==Tools::getValue('ZZSEOTK_HREFLANG_ENABLED')) {
Configuration::updateValue('ZZSEOTK_HREFLANG_ENABLED', (bool)Tools::getValue('ZZSEOTK_HREFLANG_ENABLED'));
if (null!==Tools::getValue('FKVSEOTK_HREFLANG_ENABLED')) {
Configuration::updateValue('FKVSEOTK_HREFLANG_ENABLED', (bool)Tools::getValue('FKVSEOTK_HREFLANG_ENABLED'));
}

if (null!==Tools::getValue('ZZSEOTK_CANONICAL_ENABLED')) {
Configuration::updateValue('ZZSEOTK_CANONICAL_ENABLED', (bool)Tools::getValue('ZZSEOTK_CANONICAL_ENABLED'));
if (null!==Tools::getValue('FKVSEOTK_CANONICAL_ENABLED')) {
Configuration::updateValue('FKVSEOTK_CANONICAL_ENABLED', (bool)Tools::getValue('FKVSEOTK_CANONICAL_ENABLED'));
}

if (null!==Tools::getValue('ZZSEOTK_NOBOTS_ENABLED')) {
Configuration::updateValue('ZZSEOTK_NOBOTS_ENABLED', (bool)Tools::getValue('ZZSEOTK_NOBOTS_ENABLED'));
if (null!==Tools::getValue('FKVSEOTK_NOBOTS_ENABLED')) {
Configuration::updateValue('FKVSEOTK_NOBOTS_ENABLED', (bool)Tools::getValue('FKVSEOTK_NOBOTS_ENABLED'));
}
}

Expand All @@ -152,7 +157,7 @@ public function renderForm()
'title' => $this->l('Internationalization'),
'icon' => 'icon-flag',
'fields' => array(
'ZZSEOTK_HREFLANG_ENABLED' => array(
'FKVSEOTK_HREFLANG_ENABLED' => array(
'title' => $this->l('Enable "hreflang" meta tag'),
'hint' => $this->l('Set "hreflang" meta tag into the html head to handle the same content in different languages.'),
'validation' => 'isBool',
Expand All @@ -168,7 +173,7 @@ public function renderForm()
'title' => $this->l('Canonical URL'),
'icon' => 'icon-link',
'fields' => array(
'ZZSEOTK_CANONICAL_ENABLED' => array(
'FKVSEOTK_CANONICAL_ENABLED' => array(
'title' => $this->l('Enable "canonical" meta tag'),
'hint' => $this->l('Set "canonical"meta tag into the html head to avoid content duplication issues in SEO.'),
'validation' => 'isBool',
Expand All @@ -184,7 +189,7 @@ public function renderForm()
'title' => $this->l('"nobots"'),
'icon' => 'icon-sitemap',
'fields' => array(
'ZZSEOTK_NOBOTS_ENABLED' => array(
'FKVSEOTK_NOBOTS_ENABLED' => array(
'title' => $this->l('Enable "noindex" meta tag'),
'hint' => $this->l('Set "noindex" meta tag into the html head to avoid search engine indicization of "private" pages. Public pages are not affected of course.'),
'validation' => 'isBool',
Expand Down Expand Up @@ -230,7 +235,7 @@ public function hookHeader()

private function _handleNobots()
{
if (Configuration::get('ZZSEOTK_NOBOTS_ENABLED')) {
if (Configuration::get('FKVSEOTK_NOBOTS_ENABLED')) {
if (in_array($this->_controller, $this->_nobots_controllers)
|| Tools::getValue('selected_filters')
) {
Expand All @@ -245,7 +250,7 @@ private function _handleNobots()

private function _displayHreflang()
{
if (!Configuration::get('ZZSEOTK_HREFLANG_ENABLED')) {
if (!Configuration::get('FKVSEOTK_HREFLANG_ENABLED')) {
return;
}

Expand All @@ -258,7 +263,7 @@ private function _displayHreflang()
$requested_URL = $proto . $domain . $_SERVER['REQUEST_URI'];
}

if (Configuration::get('ZZSEOTK_CANONICAL_ENABLED') && !$this->_isCanonicalRequest($requested_URL)) {
if (Configuration::get('FKVSEOTK_CANONICAL_ENABLED') && !$this->_isCanonicalRequest($requested_URL)) {
return; // skip if actual page is not the canonical page
}

Expand Down Expand Up @@ -286,7 +291,7 @@ private function _displayHreflang()

private function _displayCanonical()
{
if (!Configuration::get('ZZSEOTK_CANONICAL_ENABLED')) {
if (!Configuration::get('FKVSEOTK_CANONICAL_ENABLED')) {
return;
}

Expand Down
17 changes: 9 additions & 8 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
<?php

/**
/*
* This file is part of the "Prestashop SEO ToolKit" module.
*
* NOTICE OF LICENSE
* (c) Faktiva (http://faktiva.com)
*
* This source file is subject to the Academic Free License (AFL 3.0)
* It is available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* NOTICE OF LICENSE
* This source file is subject to the CC-BY-4.0 license that is
* available at the URL https://creativecommons.org/licenses/by/4.0/
*
* DISCLAIMER
* This code is provided as is without any warranty.
* No promise of being safe or secure
*
* @author ZiZuu.com <info@zizuu.com>
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* @source https://github.com/ZiZuu-store/PrestaShop_module-zzSEOtk
* @author AlberT <albert@faktiva.com>
* @license https://creativecommons.org/licenses/by/4.0/ CC-BY-4.0
* @source https://github.com/faktiva/prestashop-seo-tk
*/

header('Expires: Fri, 31 Dec 1999 23:59:59 GMT');
Expand Down
13 changes: 9 additions & 4 deletions tools/debug.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
<?php

/**
/*
* This file is part of the "Prestashop SEO ToolKit" module.
*
* (c) Faktiva (http://faktiva.com)
*
* NOTICE OF LICENSE
* This source file is subject to the License terms Academi cFined in the file LICENSE.md
* This source file is subject to the CC-BY-4.0 license that is
* available at the URL https://creativecommons.org/licenses/by/4.0/
*
* DISCLAIMER
* This code is provided as is without any warranty.
* No promise of being safe or secure
*
* @author ZiZuu.com <[email protected]>
* @link source available at https://github.com/ZiZuu-store/
* @author AlberT <[email protected]>
* @license https://creativecommons.org/licenses/by/4.0/ CC-BY-4.0
* @source https://github.com/faktiva/prestashop-seo-tk
*/

// Set true to enable debugging
Expand Down
44 changes: 31 additions & 13 deletions translations/et.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,35 @@
<?php

/*
* This file is part of the "Prestashop SEO ToolKit" module.
*
* (c) Faktiva (http://faktiva.com)
*
* NOTICE OF LICENSE
* This source file is subject to the CC-BY-4.0 license that is
* available at the URL https://creativecommons.org/licenses/by/4.0/
*
* DISCLAIMER
* This code is provided as is without any warranty.
* No promise of being safe or secure
*
* @author AlberT <[email protected]>
* @license https://creativecommons.org/licenses/by/4.0/ CC-BY-4.0
* @source https://github.com/faktiva/prestashop-seo-tk
*/

global $_MODULE;
$_MODULE = array();
$_MODULE['<{zzseotk}prs060144>zzseotk_d1b5d1ea0dbe349716008f89d715ff5f'] = 'ZiZuu SEO ToolKit';
$_MODULE['<{zzseotk}prs060144>zzseotk_315d8274c8fb8f894beb852533177009'] = 'Võimaldab mõningaid SEO täiendusi, nagu \'hreflang\', \'kanooniline\' ja \'noindex\'.';
$_MODULE['<{zzseotk}prs060144>zzseotk_2721730cf9ab3db75b92b8d0556750a5'] = 'Oled kindel, et soovid eemaldada \"ZiZuu SEO ToolKit\'i\"?';
$_MODULE['<{zzseotk}prs060144>zzseotk_70b4903abcb62ace84264ad0443ae759'] = 'Rahvusvaheliseks muutmine';
$_MODULE['<{zzseotk}prs060144>zzseotk_17492e133c9b260db5fc9b3bf2d5869c'] = 'Lülita sisse \"hreflang\" meta märgistus';
$_MODULE['<{zzseotk}prs060144>zzseotk_0dc76fc867387bdc9b8f5bbfbb35b60f'] = 'Lülita \"hreflang\" meta märgistus HTML päisesse, et eraldada sama sisu erinevates keeltes';
$_MODULE['<{zzseotk}prs060144>zzseotk_c9cc8cce247e49bae79f15173ce97354'] = 'Salvesta';
$_MODULE['<{zzseotk}prs060144>zzseotk_ee096b45f2e0dcd83771ea27b049c76a'] = 'Kanooniline URL';
$_MODULE['<{zzseotk}prs060144>zzseotk_2639c7053e5ce27740118bc8172d584c'] = 'Lülita sisse \"kanooniline\" meta märgistus';
$_MODULE['<{zzseotk}prs060144>zzseotk_df8ee74025f9cb35538aeb6ea2b524de'] = 'Lülita \"kanooniline\" meta märgistus HTML päisesse, et vältida SEO duplikaadi probleeme';
$_MODULE['<{zzseotk}prs060144>zzseotk_a8066a7d2d58ab65978cf66c9e852d92'] = '\"nobots\"';
$_MODULE['<{zzseotk}prs060144>zzseotk_2c0c9d8693247eddceb40c9e78b7666d'] = 'Lülita sisse \"noindex\" meta märgistus';
$_MODULE['<{zzseotk}prs060144>zzseotk_93ea8146f3aaf364151f5b92f694c517'] = 'Lülita \"noindex\" meta märgistus HTML päisesse, et vältida \"privaatsete\" lehekülgede indekseerimist. Avalikke lehekülgi see loomulikult ei mõjuta.';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_d1b5d1ea0dbe349716008f89d715ff5f'] = 'ZiZuu SEO ToolKit';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_315d8274c8fb8f894beb852533177009'] = 'Võimaldab mõningaid SEO täiendusi, nagu \'hreflang\', \'kanooniline\' ja \'noindex\'.';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_2721730cf9ab3db75b92b8d0556750a5'] = 'Oled kindel, et soovid eemaldada \"ZiZuu SEO ToolKit\'i\"?';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_70b4903abcb62ace84264ad0443ae759'] = 'Rahvusvaheliseks muutmine';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_17492e133c9b260db5fc9b3bf2d5869c'] = 'Lülita sisse \"hreflang\" meta märgistus';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_0dc76fc867387bdc9b8f5bbfbb35b60f'] = 'Lülita \"hreflang\" meta märgistus HTML päisesse, et eraldada sama sisu erinevates keeltes';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_c9cc8cce247e49bae79f15173ce97354'] = 'Salvesta';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_ee096b45f2e0dcd83771ea27b049c76a'] = 'Kanooniline URL';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_2639c7053e5ce27740118bc8172d584c'] = 'Lülita sisse \"kanooniline\" meta märgistus';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_df8ee74025f9cb35538aeb6ea2b524de'] = 'Lülita \"kanooniline\" meta märgistus HTML päisesse, et vältida SEO duplikaadi probleeme';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_a8066a7d2d58ab65978cf66c9e852d92'] = '\"nobots\"';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_2c0c9d8693247eddceb40c9e78b7666d'] = 'Lülita sisse \"noindex\" meta märgistus';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_93ea8146f3aaf364151f5b92f694c517'] = 'Lülita \"noindex\" meta märgistus HTML päisesse, et vältida \"privaatsete\" lehekülgede indekseerimist. Avalikke lehekülgi see loomulikult ei mõjuta.';
44 changes: 31 additions & 13 deletions translations/it.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,35 @@
<?php

/*
* This file is part of the "Prestashop SEO ToolKit" module.
*
* (c) Faktiva (http://faktiva.com)
*
* NOTICE OF LICENSE
* This source file is subject to the CC-BY-4.0 license that is
* available at the URL https://creativecommons.org/licenses/by/4.0/
*
* DISCLAIMER
* This code is provided as is without any warranty.
* No promise of being safe or secure
*
* @author AlberT <[email protected]>
* @license https://creativecommons.org/licenses/by/4.0/ CC-BY-4.0
* @source https://github.com/faktiva/prestashop-seo-tk
*/

global $_MODULE;
$_MODULE = array();
$_MODULE['<{zzseotk}prestashop>zzseotk_d1b5d1ea0dbe349716008f89d715ff5f'] = 'ZiZuu SEO ToolKit';
$_MODULE['<{zzseotk}prestashop>zzseotk_315d8274c8fb8f894beb852533177009'] = 'Gestisce alcune migliorie per il SEO, come i meta tag \"canonical\", \"hreflang\" e \"noindex\"';
$_MODULE['<{zzseotk}prestashop>zzseotk_2721730cf9ab3db75b92b8d0556750a5'] = 'Sicuro di voler rimuovere il modulo \"ZiZuu SEO ToolKit\" ? ';
$_MODULE['<{zzseotk}prestashop>zzseotk_70b4903abcb62ace84264ad0443ae759'] = 'Internazionalizzazione';
$_MODULE['<{zzseotk}prestashop>zzseotk_17492e133c9b260db5fc9b3bf2d5869c'] = 'Abilita il meta tag \"hreflang\"';
$_MODULE['<{zzseotk}prestashop>zzseotk_0dc76fc867387bdc9b8f5bbfbb35b60f'] = 'Inserisce il meta tag \"hreflang\" nell\'head HTML per gestire l\'indicizzazione di contenuti nelle diverse lingue';
$_MODULE['<{zzseotk}prestashop>zzseotk_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
$_MODULE['<{zzseotk}prestashop>zzseotk_ee096b45f2e0dcd83771ea27b049c76a'] = 'URL canonica';
$_MODULE['<{zzseotk}prestashop>zzseotk_2639c7053e5ce27740118bc8172d584c'] = 'Abilita il meta tag \"canonical\"';
$_MODULE['<{zzseotk}prestashop>zzseotk_df8ee74025f9cb35538aeb6ea2b524de'] = 'Inserisce il meta tag \"canonical\" nell\'head HTML per evitare problemi di contenuti duplicati nel SEO.';
$_MODULE['<{zzseotk}prestashop>zzseotk_a8066a7d2d58ab65978cf66c9e852d92'] = 'indicizzazione';
$_MODULE['<{zzseotk}prestashop>zzseotk_2c0c9d8693247eddceb40c9e78b7666d'] = 'Abilita il meta tag \"noindex\"';
$_MODULE['<{zzseotk}prestashop>zzseotk_93ea8146f3aaf364151f5b92f694c517'] = 'Inserisce il meta tag \"noindex\" nell\'head HTML impedendo l\'indicizzazione delle pagine \"private\" da parte dei motori di ricerca.';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_d1b5d1ea0dbe349716008f89d715ff5f'] = 'ZiZuu SEO ToolKit';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_315d8274c8fb8f894beb852533177009'] = 'Gestisce alcune migliorie per il SEO, come i meta tag \"canonical\", \"hreflang\" e \"noindex\"';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_2721730cf9ab3db75b92b8d0556750a5'] = 'Sicuro di voler rimuovere il modulo \"ZiZuu SEO ToolKit\" ? ';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_70b4903abcb62ace84264ad0443ae759'] = 'Internazionalizzazione';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_17492e133c9b260db5fc9b3bf2d5869c'] = 'Abilita il meta tag \"hreflang\"';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_0dc76fc867387bdc9b8f5bbfbb35b60f'] = 'Inserisce il meta tag \"hreflang\" nell\'head HTML per gestire l\'indicizzazione di contenuti nelle diverse lingue';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_ee096b45f2e0dcd83771ea27b049c76a'] = 'URL canonica';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_2639c7053e5ce27740118bc8172d584c'] = 'Abilita il meta tag \"canonical\"';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_df8ee74025f9cb35538aeb6ea2b524de'] = 'Inserisce il meta tag \"canonical\" nell\'head HTML per evitare problemi di contenuti duplicati nel SEO.';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_a8066a7d2d58ab65978cf66c9e852d92'] = 'indicizzazione';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_2c0c9d8693247eddceb40c9e78b7666d'] = 'Abilita il meta tag \"noindex\"';
$_MODULE['<{faktiva_seo_tk}prestashop>faktiva_seo_tk_93ea8146f3aaf364151f5b92f694c517'] = 'Inserisce il meta tag \"noindex\" nell\'head HTML impedendo l\'indicizzazione delle pagine \"private\" da parte dei motori di ricerca.';
17 changes: 9 additions & 8 deletions upgrade/index.php
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
<?php

/**
/*
* This file is part of the "Prestashop SEO ToolKit" module.
*
* NOTICE OF LICENSE
* (c) Faktiva (http://faktiva.com)
*
* This source file is subject to the Academic Free License (AFL 3.0)
* It is available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* NOTICE OF LICENSE
* This source file is subject to the CC-BY-4.0 license that is
* available at the URL https://creativecommons.org/licenses/by/4.0/
*
* DISCLAIMER
* This code is provided as is without any warranty.
* No promise of being safe or secure
*
* @author ZiZuu.com <info@zizuu.com>
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* @source https://github.com/ZiZuu-store/PrestaShop_module-zzSEOtk
* @author AlberT <albert@faktiva.com>
* @license https://creativecommons.org/licenses/by/4.0/ CC-BY-4.0
* @source https://github.com/faktiva/prestashop-seo-tk
*/

header('Expires: Fri, 31 Dec 1999 23:59:59 GMT');
Expand Down
Loading

0 comments on commit a8869aa

Please sign in to comment.