bootstrap = true; $this->cronJobsHandler = $this->module->getService('empik.marketplace.handler.cronJobs'); $this->prestaShopContext = $this->module->getService('empik.marketplace.prestaShopContext'); } public function initContent() { $this->context->smarty->assign([ 'cron_jobs' => $this->cronJobsHandler->getAvailableActionsUrls(), 'url_help' => 'https://www.empik.com/empikplace/pomoc', 'url_docs' => 'https://www.empik.com/empikplace/integracje/prestashop/instrukcja', ]); $this->content = $this->context->smarty->fetch( $this->module->getLocalPath() . '/views/templates/admin/help.tpl' ); parent::initContent(); } protected function l($string, $class = null, $addslashes = false, $htmlentities = true) { return Translate::getModuleTranslation($this->module, $string, get_class($this), null, $addslashes); } }