Skip to content

Commit

Permalink
Merge pull request #18 from PrestaEdit/dev
Browse files Browse the repository at this point in the history
Do not use hook AdminStatsModules alias, use displayAdminStatsModules & Bump version to 2.0.2
  • Loading branch information
PierreRambaud authored Dec 29, 2021
2 parents 0088f95 + 7404ae8 commit b8e09d6
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
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>pagesnotfound</name>
<displayName><![CDATA[Pages not found]]></displayName>
<version><![CDATA[2.0.1]]></version>
<version><![CDATA[2.0.2]]></version>
<description><![CDATA[Displays the pages requested by your visitors that have not been found.]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[analytics_stats]]></tab>
Expand Down
6 changes: 3 additions & 3 deletions pagesnotfound.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct()
{
$this->name = 'pagesnotfound';
$this->tab = 'analytics_stats';
$this->version = '2.0.1';
$this->version = '2.0.2';
$this->author = 'PrestaShop';
$this->need_instance = 0;

Expand All @@ -50,7 +50,7 @@ public function install()
{
if (!parent::install()
|| !$this->registerHook('displayTop')
|| !$this->registerHook('AdminStatsModules')
|| !$this->registerHook('displayAdminStatsModules')
) {
return false;
}
Expand Down Expand Up @@ -99,7 +99,7 @@ private function getPages()
return $pages;
}

public function hookAdminStatsModules()
public function hookDisplayAdminStatsModules()
{
if (Tools::isSubmit('submitTruncatePNF'))
{
Expand Down
33 changes: 33 additions & 0 deletions upgrade/upgrade-2.0.2.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @author PrestaShop SA <[email protected]>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
*/

/**
* @param Module $module
*
* @return bool
*/
function upgrade_module_2_0_2$module)
{
$module->unregisterHook('AdminStatsModules');
$module->registerHook('displayAdminStatsModules');

return true;
}

0 comments on commit b8e09d6

Please sign in to comment.