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 /
EventBundle /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
MarketingAttendee.php
17.83
KB
-rwxrwxr-x
2026-04-02 11:48
MarketingEvent.php
17.65
KB
-rwxrwxr-x
2026-04-02 11:48
Questionnaire.php
9.18
KB
-rwxrwxr-x
2026-04-02 11:48
SchoolAttendee.php
19.49
KB
-rwxrwxr-x
2026-04-02 11:48
SchoolCostPackage.php
1.96
KB
-rwxrwxr-x
2026-05-25 12:28
SchoolCourse.php
13.25
KB
-rwxrwxr-x
2026-04-02 11:48
SchoolEvent.php
18.78
KB
-rwxrwxr-x
2026-04-02 11:48
SchoolFacilitator.php
3.44
KB
-rwxrwxr-x
2026-05-25 12:28
SchoolProvider.php
7.66
KB
-rwxrwxr-x
2026-04-02 11:48
SchoolWebCategory.php
3.37
KB
-rwxrwxr-x
2026-05-25 12:28
TrainingProvider.php
20.25
KB
-rwxrwxr-x
2026-04-02 11:48
Save
Rename
<?php namespace App\EventBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; /** * SchoolWebCategory * * @ORM\Table(name="SchoolWebCategories") * @ORM\Entity(repositoryClass="App\EventBundle\Repository\SchoolWebCategoryRepository") */ class SchoolWebCategory { /** * @ORM\Id * @ORM\Column(name="WebCategoryID", type="integer") * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * @ORM\Column(name="WebCategoryName", type="string", length=255, nullable=true) */ private $web_category_name; /** * @ORM\Column(name="DisplayOrder", type="integer", nullable=false, options={"default": 0}) */ private $display_order; /** * @ORM\OneToMany(targetEntity="SchoolCourse", mappedBy="school_web_category") */ private $school_course; /** * @ORM\OneToMany(targetEntity="SchoolEvent", mappedBy="school_web_category") */ private $school_event; public function __construct() { $this->school_course = new ArrayCollection(); $this->school_event = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getWebCategoryName(): ?string { return $this->web_category_name; } public function setWebCategoryName(?string $web_category_name): static { $this->web_category_name = $web_category_name; return $this; } public function getDisplayOrder(): ?int { return $this->display_order; } public function setDisplayOrder(int $display_order): static { $this->display_order = $display_order; return $this; } /** * @return Collection<int, SchoolCourse> */ public function getSchoolCourse(): Collection { return $this->school_course; } public function addSchoolCourse(SchoolCourse $schoolCourse): static { if (!$this->school_course->contains($schoolCourse)) { $this->school_course->add($schoolCourse); $schoolCourse->setSchoolWebCategory($this); } return $this; } public function removeSchoolCourse(SchoolCourse $schoolCourse): static { if ($this->school_course->removeElement($schoolCourse)) { // set the owning side to null (unless already changed) if ($schoolCourse->getSchoolWebCategory() === $this) { $schoolCourse->setSchoolWebCategory(null); } } return $this; } /** * @return Collection<int, SchoolEvent> */ public function getSchoolEvent(): Collection { return $this->school_event; } public function addSchoolEvent(SchoolEvent $schoolEvent): static { if (!$this->school_event->contains($schoolEvent)) { $this->school_event->add($schoolEvent); $schoolEvent->setSchoolWebCategory($this); } return $this; } public function removeSchoolEvent(SchoolEvent $schoolEvent): static { if ($this->school_event->removeElement($schoolEvent)) { // set the owning side to null (unless already changed) if ($schoolEvent->getSchoolWebCategory() === $this) { $schoolEvent->setSchoolWebCategory(null); } } return $this; } }