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; /** * ErrorLog * * @ORM\Table(name="ErrorLog", indexes={ * @ORM\Index(name="created_at_idx", columns={"created_at"}), * @ORM\Index(name="updated_at_idx", columns={"updated_at"}) * }) * @ORM\Entity(repositoryClass="App\CoreBundle\Repository\ErrorLogRepository") * @ORM\HasLifecycleCallbacks */ class ErrorLog { /** * @ORM\Id * @ORM\Column(type="integer") * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $url_id; /** * @ORM\Column(type="text", nullable=true) */ private $errmessage; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $session_id; /** * @ORM\Column(type="boolean") */ private $is_info; /** * @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 integer */ public function getId() { return $this->id; } /** * Set url_id * * @param integer $urlId * @return ErrorLog */ public function setUrlId($urlId) { $this->url_id = $urlId; return $this; } /** * Get url_id * * @return integer */ public function getUrlId() { return $this->url_id; } /** * Set errmessage * * @param string $errmessage * @return ErrorLog */ public function setErrmessage($errmessage) { $this->errmessage = $errmessage; return $this; } /** * Get errmessage * * @return string */ public function getErrmessage() { return $this->errmessage; } /** * Set session_id * * @param integer $sessionId * @return ErrorLog */ public function setSessionId($sessionId) { $this->session_id = $sessionId; return $this; } /** * Get session_id * * @return integer */ public function getSessionId() { return $this->session_id; } /** * Set is_info * * @param boolean $isInfo * @return ErrorLog */ public function setIsInfo($isInfo) { $this->is_info = $isInfo; return $this; } /** * Get is_info * * @return boolean */ public function getIsInfo() { return $this->is_info; } /** * Set created_by * * @param integer $createdBy * @return ErrorLog */ public function setCreatedBy($createdBy) { $this->created_by = $createdBy; return $this; } /** * Get created_by * * @return integer */ public function getCreatedBy() { return $this->created_by; } /** * Set created_at * * @param \DateTime $createdAt * @return ErrorLog */ public function setCreatedAt($createdAt) { $this->created_at = $createdAt; return $this; } /** * @ORM\PrePersist */ public function setCreatedAtValue(): void { if (!$this->getCreatedAt()) { $this->created_at = new \DateTime(); } } /** * Get created_at * * @return \DateTime */ public function getCreatedAt() { return $this->created_at; } /** * Set updated_at * * @param \DateTime $updatedAt * @return ErrorLog */ public function setUpdatedAt($updatedAt) { $this->updated_at = $updatedAt; return $this; } /** * Get updated_at * * @return \DateTime */ public function getUpdatedAt() { return $this->updated_at; } /** * @ORM\PrePersist * @ORM\PreUpdate */ public function setUpdatedAtValue() { $this->updated_at = new \DateTime(); } public function isIsInfo(): ?bool { return $this->is_info; } public function isInfo(): ?bool { return $this->is_info; } }