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 /
CoreBundle /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
BatchJobs.php
7.96
KB
-rwxrwxr-x
2026-04-02 11:48
ErrorLog.php
4.3
KB
-rwxrwxr-x
2026-05-18 12:51
KeyValue.php
2.52
KB
-rwxrwxr-x
2026-05-25 12:28
PickList.php
1.93
KB
-rwxrwxr-x
2026-05-25 12:28
SystemSetting.php
3.65
KB
-rwxrwxr-x
2026-04-02 11:48
SystemSettingGroup.php
3.02
KB
-rwxrwxr-x
2026-04-02 11:48
TempValue.php
3.31
KB
-rwxrwxr-x
2026-05-25 12:28
Save
Rename
<?php namespace App\CoreBundle\Entity; use Doctrine\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * TempValue * * @ORM\Table(name="tmp_value") * @ORM\Entity(repositoryClass="App\CoreBundle\Repository\TempValueRepository") * @ORM\HasLifecycleCallbacks */ class TempValue { /** * @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 $temp_value_name; /** * @ORM\Column(type="text") */ private $temp_value_string; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $created_by; /** * @ORM\Column(type="datetime") */ private $created_at; /** * @ORM\Column(type="datetime", nullable=true) */ private $updated_at; /** * Get id. * * @return string */ public function getId() { return $this->id; } /** * Set tempValueName. * * @param string $tempValueName * * @return TempValue */ public function setTempValueName($tempValueName) { $this->temp_value_name = $tempValueName; return $this; } /** * Get tempValueName. * * @return string */ public function getTempValueName() { return $this->temp_value_name; } /** * Set tempValueString. * * @param string $tempValueString * * @return TempValue */ public function setTempValueString($tempValueString) { $this->temp_value_string = $tempValueString; return $this; } /** * Get tempValueString. * * @return string */ public function getTempValueString() { return $this->temp_value_string; } /** * Set createdBy. * * @param string|null $createdBy * * @return TempValue */ public function setCreatedBy($createdBy = null) { $this->created_by = $createdBy; return $this; } /** * Get createdBy. * * @return string|null */ public function getCreatedBy() { return $this->created_by; } /** * Set createdAt. * * @param \DateTime $createdAt * * @return TempValue */ public function setCreatedAt($createdAt) { $this->created_at = $createdAt; return $this; } /** * Get createdAt. * * @return \DateTime */ public function getCreatedAt() { return $this->created_at; } /** * Set updatedAt. * * @param \DateTime|null $updatedAt * * @return TempValue */ public function setUpdatedAt($updatedAt = null) { $this->updated_at = $updatedAt; return $this; } /** * Get updatedAt. * * @return \DateTime|null */ public function getUpdatedAt() { return $this->updated_at; } /** * @ORM\PrePersist */ public function setCreatedAtValue() { $this->setCreatedAt(new \DateTime()); } /** * @ORM\PreUpdate */ public function setUpdatedAtValue() { $this->setUpdatedAt(new \DateTime()); } }