* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ class ps_AccountsApiInfoModuleFrontController extends ModuleFrontController { /** * @return void */ public function postProcess() { if (Module::isInstalled('ps_eventbus')) { Tools::redirect($this->context->link->getModuleLink( 'ps_eventbus', 'apiInfo', [ 'job_id' => Tools::getValue('job_id', ''), ], null, null, $this->context->shop->id )); } } }