* @copyright 2007-2018 PrestaShop SA * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class SmartyDevTemplateCore extends Smarty_Internal_Template { /** @var SmartyCustom|null */ public $smarty = null; public function fetch($template = null, $cache_id = null, $compile_id = null, $parent = null, $display = false, $merge_tpl_vars = true, $no_output_filter = false) { if (!is_null($template)) { $tpl = $template->template_resource; } else { $tpl = $this->template_resource; } return "\n\n" . parent::fetch($template, $cache_id, $compile_id, $parent, $display, $merge_tpl_vars, $no_output_filter) . "\n\n"; } }