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 /
SessionsBundle /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
SessionTextValues.php
2.19
KB
-rwxrwxr-x
2026-04-02 11:48
SessionUrls.php
2.26
KB
-rwxrwxr-x
2026-05-25 12:28
SessionValues.php
2.11
KB
-rwxrwxr-x
2026-05-25 12:28
Sessions.php
8.42
KB
-rwxrwxr-x
2026-05-25 12:28
Sites.php
6.78
KB
-rwxrwxr-x
2026-05-25 12:28
Save
Rename
<?php namespace App\SessionsBundle\Entity; use Doctrine\ORM\Mapping as ORM; /** * SessionValues * * @ORM\Table(name="session_values") * @ORM\Entity(repositoryClass="App\SessionsBundle\Repository\SessionValuesRepository") */ class SessionValues { /** * @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 $value_name; /** * @ORM\Column(type="string", length=255) */ private $value; /** * @ORM\ManyToOne(targetEntity="Sessions", inversedBy="session_values", cascade={"persist", "remove"}) * @ORM\JoinColumn(name="session_id", referencedColumnName="id") */ private $sessions; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set value_name * * @param string $valueName * @return SessionValues */ public function setValueName($valueName) { $this->value_name = $valueName; return $this; } /** * Get value_name * * @return string */ public function getValueName() { return $this->value_name; } /** * Set value * * @param string $value * @return SessionValues */ public function setValue($value) { $this->value = $value; return $this; } /** * Get value * * @return string */ public function getValue() { return $this->value; } /** * Set sessions * * @param \SessionsBundle\Entity\Sessions $sessions * @return SessionValues */ public function setSessions(\App\SessionsBundle\Entity\Sessions $sessions = null) { $this->sessions = $sessions; return $this; } /** * Get sessions * * @return \SessionsBundle\Entity\Sessions */ public function getSessions() { return $this->sessions; } }