![]() 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/PointBundle/Entity/ |
<?php namespace Mautic\PointBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; use Mautic\ApiBundle\Serializer\Driver\ApiMetadataDriver; use Mautic\CoreBundle\Doctrine\Mapping\ClassMetadataBuilder; class TriggerEvent { /** * @var int */ private $id; /** * @var string */ private $name; /** * @var string|null */ private $description; /** * @var string */ private $type; /** * @var int */ private $order = 0; /** * @var array */ private $properties = []; /** * @var Trigger */ private $trigger; /** * @var ArrayCollection<int,\Mautic\PointBundle\Entity\LeadTriggerLog> */ private $log; /** * @var array */ private $changes; public function __construct() { $this->log = new ArrayCollection(); } public static function loadMetadata(ORM\ClassMetadata $metadata): void { $builder = new ClassMetadataBuilder($metadata); $builder->setTable('point_trigger_events') ->setCustomRepositoryClass(TriggerEventRepository::class) ->addIndex(['type'], 'trigger_type_search'); $builder->addIdColumns(); $builder->createField('type', 'string') ->length(50) ->build(); $builder->createField('order', 'integer') ->columnName('action_order') ->build(); $builder->addField('properties', 'array'); $builder->createManyToOne('trigger', 'Trigger') ->inversedBy('events') ->addJoinColumn('trigger_id', 'id', false, false, 'CASCADE') ->build(); $builder->createOneToMany('log', 'LeadTriggerLog') ->mappedBy('event') ->cascadePersist() ->cascadeRemove() ->fetchExtraLazy() ->build(); } /** * Prepares the metadata for API usage. */ public static function loadApiMetadata(ApiMetadataDriver $metadata): void { $metadata->setGroupPrefix('trigger') ->addProperties( [ 'id', 'name', 'description', 'type', 'order', 'properties', ] ) ->build(); } private function isChanged($prop, $val): void { if ($this->$prop != $val) { $this->changes[$prop] = [$this->$prop, $val]; } } /** * @return array */ public function getChanges() { return $this->changes; } /** * @return int */ public function getId() { return $this->id; } /** * @param int $order * * @return TriggerEvent */ public function setOrder($order) { $this->isChanged('order', $order); $this->order = $order; return $this; } /** * @return int */ public function getOrder() { return $this->order; } /** * @param array $properties * * @return TriggerEvent */ public function setProperties($properties) { $this->isChanged('properties', $properties); $this->properties = $properties; return $this; } /** * @return array */ public function getProperties() { return $this->properties; } /** * @return self */ public function setTrigger(Trigger $trigger) { $this->trigger = $trigger; return $this; } /** * @return Trigger */ public function getTrigger() { return $this->trigger; } /** * @param string $type * * @return TriggerEvent */ public function setType($type) { $this->isChanged('type', $type); $this->type = $type; return $this; } /** * @return string */ public function getType() { return $this->type; } public function convertToArray(): array { return get_object_vars($this); } /** * @param string $description * * @return TriggerEvent */ public function setDescription($description) { $this->isChanged('description', $description); $this->description = $description; return $this; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string $name * * @return TriggerEvent */ public function setName($name) { $this->isChanged('name', $name); $this->name = $name; return $this; } /** * @return string */ public function getName() { return $this->name; } /** * @return self */ public function addLog(LeadTriggerLog $log) { $this->log[] = $log; return $this; } public function removeLog(LeadTriggerLog $log): void { $this->log->removeElement($log); } /** * @return \Doctrine\Common\Collections\Collection */ public function getLog() { return $this->log; } }