Spaces:
No application file
No application file
File size: 2,778 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
<?php
namespace Mautic\CoreBundle\Event;
use Mautic\CoreBundle\Entity\CommonEntity;
use Mautic\DynamicContentBundle\Entity\Stat;
use Mautic\LeadBundle\Entity\Lead;
class TokenReplacementEvent extends CommonEvent
{
/**
* @var CommonEntity|string
*/
protected $entity;
/**
* @var CommonEntity|string|null
*/
protected $content;
/**
* @var array
*/
protected $tokens = [];
private ?Stat $stat = null;
/**
* @param CommonEntity|string|null $content
* @param Lead|mixed[]|null $lead
* @param mixed $passthrough
*/
public function __construct(
$content,
protected $lead = null,
protected array $clickthrough = [],
protected $passthrough = null,
private bool $internalSend = false
) {
if ($content instanceof CommonEntity) {
$this->entity = $content;
}
$this->content = $content;
}
/**
* @return CommonEntity|string|null
*/
public function getContent()
{
return $this->content;
}
/**
* @param CommonEntity|string|null $content
*/
public function setContent($content): void
{
$this->content = $content;
}
/**
* @return Lead|mixed[]|null
*/
public function getLead()
{
return $this->lead;
}
/**
* @return mixed[]
*/
public function getClickthrough()
{
if (!in_array('lead', $this->clickthrough)) {
if (is_array($this->lead) && !empty($this->lead['id'])) {
$this->clickthrough['lead'] = $this->lead['id'];
} elseif ($this->lead instanceof Lead && $this->lead->getId()) {
$this->clickthrough['lead'] = $this->lead->getId();
}
}
return $this->clickthrough;
}
/**
* @param mixed[] $clickthrough
*/
public function setClickthrough($clickthrough): void
{
$this->clickthrough = $clickthrough;
}
/**
* @return CommonEntity|string
*/
public function getEntity()
{
return $this->entity;
}
public function addToken($token, $value): void
{
$this->tokens[$token] = $value;
}
/**
* @return array
*/
public function getTokens()
{
return $this->tokens;
}
/**
* @return mixed|null
*/
public function getPassthrough()
{
return $this->passthrough;
}
public function getStat(): ?Stat
{
return $this->stat;
}
public function setStat(?Stat $stat): void
{
$this->stat = $stat;
}
public function isInternalSend(): bool
{
return $this->internalSend;
}
}
|