<?php namespace Mail\Mjml; /** * */ class Events { public static function bindEvents() { if (Module::getDbOption('use_event','Y') === 'Y') { static::addCustomTemplateEngine(); } } public static function addCustomTemplateEngine() { global $arCustomTemplateEngines; $arCustomTemplateEngines['mjml.twig'] = [ 'templateExt' => ['mjml.twig', 'twig'], 'function' => '\Mail\Mjml\Mjml\RendererTemplate\renderTemplateFile', ]; } }