* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tinymce\Hook; use Thelia\Core\Event\Hook\HookRenderEvent; use Thelia\Core\Hook\BaseHook; /** * Class HookManager. * * @author Franck Allimant */ class HookManager extends BaseHook { public function onJsWysiwyg(HookRenderEvent $event): void { $content = $this->render('tinymce_init.tpl'); $event->add($content); } }