Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove addons links from the module #301

Merged
merged 5 commits into from Dec 16, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions blockreassurance.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ class blockreassurance extends Module implements WidgetInterface
/** @var bool */
public $need_instance;
/** @var string */
public $module_key;
/** @var string */
public $author_address;
/** @var string */
public $controller_name;
/** @var bool */
public $bootstrap;
Expand Down Expand Up @@ -102,8 +98,6 @@ public function __construct()
$this->version = '5.1.0';
$this->author = 'PrestaShop';
$this->need_instance = false;
$this->module_key = '938b96386d4d79aa7cb891439cb0ef11';
$this->author_address = '0x64aa3c1e4034d07015f639b0e171b0d7b27d01aa';
This conversation was marked as resolved.
Show resolved Hide resolved

$this->bootstrap = true;
parent::__construct();
Expand Down Expand Up @@ -206,7 +200,7 @@ public function install()
return true;
}

$this->_errors[] = $this->trans('There was an error during the installation. Please contact us through Addons website.', [], 'Modules.Blockreassurance.Admin');
$this->_errors[] = $this->trans('There was an error during the installation. Please <a href="https://github.com/PrestaShop/PrestaShop/issues">open an issue</a> on the PrestaShop project.', [], 'Modules.Blockreassurance.Admin');

return false;
}
Expand Down Expand Up @@ -236,7 +230,7 @@ public function uninstall()
return true;
}

$this->_errors[] = $this->trans('There was an error during the uninstallation. Please contact us through Addons website.', [], 'Modules.Blockreassurance.Admin');
$this->_errors[] = $this->trans('There was an error during the uninstallation. Please <a href="https://github.com/PrestaShop/PrestaShop/issues">open an issue</a> on the PrestaShop project.', [], 'Modules.Blockreassurance.Admin');

return false;
}
Expand Down