* @copyright 2014-2023 Presta-Mod.pl * @license Licecnja na jedną domenę * Presta-Mod.pl Rafał Zontek */ class PmInpostPaczkomatyPrintModuleFrontController extends ModuleFrontController { public function __construct() { parent::__construct(); $this->display_column_left = false; $this->context = Context::getContext(); } public function initContent() { $inpost = Module::getInstanceByName('pminpostpaczkomaty'); if (Tools::isSubmit('print')) { $api = InpostApi::getInstance(); $pack_code = Tools::getValue('print'); $api->getsticker($pack_code); die(); } else { echo $inpost->selPaczkomat(); } } }