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\ORM\Mapping as ORM; /** * SystemSetting * * @ORM\Table(name="system_setting") * @ORM\Entity(repositoryClass="App\CoreBundle\Repository\SystemSettingRepository") */ class SystemSetting { /** * @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 $setting_name; /** * @ORM\Column(type="string", length=255) */ private $setting_system_name; /** * @ORM\Column(type="string", length=255) */ private $setting_value; /** * @ORM\Column(type="boolean", options={"default": false}) */ private $is_visible; /** * @ORM\ManyToOne(targetEntity="SystemSettingGroup", inversedBy="system_setting") * @ORM\JoinColumn(name="system_setting_group_id", referencedColumnName="id") */ private $system_setting_group; /** * Get id * * @return string */ public function getId() { return $this->id; } /** * Set setting_name * * @param string $settingName * @return SystemSetting */ public function setSettingName($settingName) { $this->setting_name = $settingName; return $this; } /** * Get setting_name * * @return string */ public function getSettingName() { return $this->setting_name; } /** * Set setting_system_name * * @param string $settingSystemName * @return SystemSetting */ public function setSettingSystemName($settingSystemName) { $this->setting_system_name = $settingSystemName; return $this; } /** * Get setting_system_name * * @return string */ public function getSettingSystemName() { return $this->setting_system_name; } /** * Set setting_value * * @param string $settingValue * @return SystemSetting */ public function setSettingValue($settingValue) { $this->setting_value = $settingValue; return $this; } /** * Get setting_value * * @return string */ public function getSettingValue() { return $this->setting_value; } /** * Set system_setting_group * * @param \CoreBundle\Entity\SystemSettingGroup $systemSettingGroup * @return SystemSetting */ public function setSystemSettingGroup(\App\CoreBundle\Entity\SystemSettingGroup $systemSettingGroup = null) { $this->system_setting_group = $systemSettingGroup; return $this; } /** * Get system_setting_group * * @return \CoreBundle\Entity\SystemSettingGroup */ public function getSystemSettingGroup() { return $this->system_setting_group; } /** * Set is_visible * * @param boolean $isVisible * @return SystemSetting */ public function setIsVisible($isVisible) { $this->is_visible = $isVisible; return $this; } /** * Get is_visible * * @return boolean */ public function getIsVisible() { return $this->is_visible; } /** * Get object as string * * @return string */ public function __toString() { return (string) $this->getSettingName(); } public function isIsVisible(): ?bool { return $this->is_visible; } public function isVisible(): ?bool { return $this->is_visible; } }