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; /** * SchoolFacilitator * * @ORM\Table(name="SchoolFacilitators") * @ORM\Entity(repositoryClass="App\EventBundle\Repository\SchoolFacilitatorRepository") */ class SchoolFacilitator { /** * @ORM\Id * @ORM\Column(name="FacilitatorID", type="integer") * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * @ORM\Column(name="FacilitatorName", type="string", length=255, nullable=true) */ private $facilitator_name; /** * @ORM\Column(name="PhoneNumber", type="string", length=255, nullable=true) */ private $phone_number; /** * @ORM\Column(name="MobileNumber", type="string", length=255, nullable=true) */ private $mobile_number; /** * @ORM\Column(name="FaxNumber", type="string", length=255, nullable=true) */ private $fax_number; /** * @ORM\Column(name="EmailAddress", type="string", length=255, nullable=true) */ private $email_address; /** * @ORM\OneToMany(targetEntity="SchoolCourse", mappedBy="school_facilitator") */ private $school_course; public function __construct() { $this->school_course = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getFacilitatorName(): ?string { return $this->facilitator_name; } public function setFacilitatorName(?string $facilitator_name): static { $this->facilitator_name = $facilitator_name; return $this; } public function getPhoneNumber(): ?string { return $this->phone_number; } public function setPhoneNumber(?string $phone_number): static { $this->phone_number = $phone_number; return $this; } public function getMobileNumber(): ?string { return $this->mobile_number; } public function setMobileNumber(?string $mobile_number): static { $this->mobile_number = $mobile_number; return $this; } public function getFaxNumber(): ?string { return $this->fax_number; } public function setFaxNumber(?string $fax_number): static { $this->fax_number = $fax_number; return $this; } public function getEmailAddress(): ?string { return $this->email_address; } public function setEmailAddress(?string $email_address): static { $this->email_address = $email_address; 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->setSchoolFacilitator($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->getSchoolFacilitator() === $this) { $schoolCourse->setSchoolFacilitator(null); } } return $this; } }