56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?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 version 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 license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
|
* @copyright Since 2007 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
|
|
*/
|
|
|
|
use PrestaShop\Module\PsAccounts\Handler\Error\Sentry;
|
|
use PrestaShop\Module\PsAccounts\Service\ShopLinkAccountService;
|
|
|
|
/**
|
|
* Controller generate hmac and redirect on hmac's file.
|
|
*/
|
|
class AdminConfigureHmacPsAccountsController extends ModuleAdminController
|
|
{
|
|
/**
|
|
* @var Ps_accounts
|
|
*/
|
|
public $module;
|
|
|
|
/**
|
|
* @return void
|
|
*
|
|
* @throws Throwable
|
|
*/
|
|
public function initContent()
|
|
{
|
|
try {
|
|
/** @var ShopLinkAccountService $shopLinkAccountService */
|
|
$shopLinkAccountService = $this->module->getService(ShopLinkAccountService::class);
|
|
|
|
Tools::redirect(
|
|
$shopLinkAccountService->getVerifyAccountUrl(
|
|
Tools::getAllValues(),
|
|
_PS_ROOT_DIR_
|
|
)
|
|
);
|
|
} catch (Exception $e) {
|
|
Sentry::captureAndRethrow($e);
|
|
}
|
|
}
|
|
}
|