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