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.216.28
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\ORM\Mapping as ORM; /** * FormType * * @ORM\Table(name="content_form_type") * @ORM\Entity(repositoryClass="App\ContentBundle\Repository\FormTypeRepository") */ class FormType { /** * @ORM\Id * @ORM\Column(type="string", unique=true) * @ORM\GeneratedValue(strategy="CUSTOM") * @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $type_name; public function getId(): ?string { return $this->id; } public function getTypeName(): ?string { return $this->type_name; } public function setTypeName(string $type_name): static { $this->type_name = $type_name; return $this; } }