Spaces:
No application file
No application file
File size: 1,582 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 |
<?php
namespace MauticPlugin\MauticSocialBundle\Event;
use Mautic\CoreBundle\Event\CommonEvent;
use MauticPlugin\MauticSocialBundle\Entity\Monitoring;
class SocialMonitorEvent extends CommonEvent
{
protected int $newLeadCount;
protected int $updatedLeadCount;
/**
* @param string $integrationName
* @param int $newLeadCount
* @param int $updatedLeadCount
*/
public function __construct(
protected $integrationName,
Monitoring $monitoring,
protected array $leadIds,
$newLeadCount,
$updatedLeadCount
) {
$this->entity = $monitoring;
$this->newLeadCount = (int) $newLeadCount;
$this->updatedLeadCount = (int) $updatedLeadCount;
}
/**
* Returns the Monitoring entity.
*
* @return Monitoring
*/
public function getMonitoring()
{
return $this->entity;
}
/**
* Get count of new leads.
*/
public function getNewLeadCount(): int
{
return $this->newLeadCount;
}
/**
* Get count of updated leads.
*/
public function getUpdatedLeadCount(): int
{
return $this->updatedLeadCount;
}
public function getTotalLeadCount(): int
{
return $this->updatedLeadCount + $this->newLeadCount;
}
/**
* @return array
*/
public function getLeadIds()
{
return $this->leadIds;
}
/**
* @return mixed
*/
public function getIntegrationName()
{
return $this->integrationName;
}
}
|