![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/CoreBundle/Event/ |
<?php namespace Mautic\CoreBundle\Event; use Symfony\Contracts\EventDispatcher\Event; class CustomContentEvent extends Event { /** * @var array */ protected $content = []; /** * @var array */ protected $templates = []; /** * @param string $viewName * @param string|null $context */ public function __construct( protected $viewName, protected $context = null, protected array $vars = [] ) { } /** * Check if the context is applicable. * * @param string $viewName * @param string|null $context */ public function checkContext($viewName, $context): bool { return $viewName === $this->viewName && $context === $this->context; } /** * @param string $content */ public function addContent($content): void { $this->content[] = $content; } /** * @param string $template */ public function addTemplate($template, array $vars = []): void { $this->templates[] = [ 'template' => $template, 'vars' => $vars, ]; } /** * @return mixed */ public function getViewName() { return $this->viewName; } /** * @return string|null */ public function getContext() { return $this->context; } /** * @return array */ public function getVars() { return $this->vars; } /** * @return array */ public function getContent() { return $this->content; } /** * @return array */ public function getTemplates() { return $this->templates; } }