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.216.28
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\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * MarketingEvent * * @ORM\Table(name="MarketingEvents") * @ORM\Entity(repositoryClass="App\EventBundle\Repository\MarketingEventRepository") */ class MarketingEvent { /** * @ORM\Id * @ORM\Column(name="EventID", type="integer") * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * @ORM\Column(name="EventName", type="string", length=255, nullable=true) */ private $event_name; /** * @ORM\Column(name="Level", type="string", length=255, nullable=true) */ private $level; /** * @ORM\Column(name="City", type="string", length=255, nullable=true) */ private $city; /** * @ORM\Column(name="Venue", type="string", length=255, nullable=true) */ private $venue; /** * @ORM\Column(name="StartDate", type="date", nullable=true) */ private $start_date; /** * @ORM\Column(name="EndDate", type="date", nullable=true) */ private $end_date; /** * @ORM\Column(name="StartTime", type="time", nullable=true) */ private $start_time; /** * @ORM\Column(name="EndTime", type="time", nullable=true) */ private $end_time; /** * @ORM\Column(name="AvailableSpaces", type="integer", nullable=false, options={"default": 0}) */ private $available_spaces; /** * @ORM\Column(name="CostPerPerson", type="decimal", precision=2, scale=2, nullable=true) */ private $cost_per_person; /** * @ORM\Column(name="EventDescription", type="text", nullable=true) */ private $event_description; /** * @ORM\Column(name="Hours", type="integer", nullable=false, options={"default": 0}) */ private $hours; /** * @ORM\Column(name="CPD", type="string", length=50, nullable=true) */ private $cpd; /** * @ORM\Column(name="CODE", type="string", length=50, nullable=true) */ private $code; /** * @ORM\Column(name="AccredNum", type="string", length=50, nullable=true) */ private $accred_num; /** * @ORM\Column(name="Province", type="string", length=50, nullable=true) */ private $province; /** * @ORM\Column(name="RegDeadline", type="datetime", nullable=true) */ private $reg_deadline; /** * @ORM\Column(name="MemberDiscount", type="decimal", precision=2, scale=2, nullable=true) */ private $member_discount; /** * @ORM\Column(name="EarlyBirdDiscount", type="decimal", precision=2, scale=2, nullable=true) */ private $early_bird_discount; /** * @ORM\Column(name="EarlyBirdDate", type="datetime", nullable=true) */ private $early_bird_date; /** * @ORM\Column(name="Cancelled", type="boolean", nullable=false, options={"default": 0}) */ private $cancelled; /** * @ORM\Column(name="BankAccName", type="string", length=255, nullable=true) */ private $bank_acc_name; /** * @ORM\Column(name="ExternalLink", type="text", nullable=true) */ private $external_link; /** * @ORM\Column(name="FileAttachment", type="string", length=255, nullable=true) */ private $file_attachment; /** * @ORM\Column(name="BookingConfirmed", type="string", length=1, nullable=true) */ private $booking_confirmed; /** * @ORM\Column(name="AttendanceRegister", type="string", length=255, nullable=true) */ private $attendance_register; /** * @ORM\Column(name="RegFormPersonal", type="boolean", nullable=false, options={"default": 0}) */ private $reg_form_personal; /** * @ORM\Column(name="RegFormCompany", type="boolean", nullable=false, options={"default": 0}) */ private $reg_form_company; /** * @ORM\Column(name="RegFormSpouse", type="boolean", nullable=false, options={"default": 0}) */ private $reg_form_spouse; /** * @ORM\Column(name="RegFormBooker", type="boolean", nullable=false, options={"default": 0}) */ private $reg_form_booker; /** * @ORM\Column(name="RegFormInvoicing", type="boolean", nullable=false, options={"default": 0}) */ private $reg_form_invoicing; /** * @ORM\Column(name="RegFormDietary", type="boolean", nullable=false, options={"default": 0}) */ private $reg_form_dietary; /** * @ORM\Column(name="Nametags", type="integer", nullable=false, options={"default": 0}) */ private $nametags; /** * @ORM\Column(name="RegFormExhibitor", type="boolean", nullable=false, options={"default": 0}) */ private $reg_form_exhibitor; /** * @ORM\Column(name="RegFormDinner", type="boolean", nullable=false, options={"default": 0}) */ private $reg_form_dinner; /** * @ORM\Column(name="RegFormInfo", type="text", nullable=true) */ private $reg_form_info; /** * @ORM\Column(name="AccountsEmail", type="string", length=255, nullable=true) */ private $accounts_email; /** * @ORM\Column(name="AllowRegDuring", type="boolean", nullable=false, options={"default": 0}) */ private $allow_reg_during; /** * @ORM\Column(name="MinimalRegForm", type="boolean", nullable=false, options={"default": 0}) */ private $minimal_reg_form; /** * @ORM\Column(name="ConfirmationDetails", type="text", nullable=true) */ private $confirmation_details; /** * @ORM\Column(name="BannerImgURL", type="string", length=255, nullable=true) */ private $banner_img_url; /** * @ORM\OneToMany(targetEntity="MarketingAttendee", mappedBy="marketing_event") */ private $marketing_attendee; public function __construct() { $this->marketing_attendee = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getEventName(): ?string { return $this->event_name; } public function setEventName(?string $event_name): static { $this->event_name = $event_name; return $this; } public function getLevel(): ?string { return $this->level; } public function setLevel(?string $level): static { $this->level = $level; return $this; } public function getCity(): ?string { return $this->city; } public function setCity(?string $city): static { $this->city = $city; return $this; } public function getVenue(): ?string { return $this->venue; } public function setVenue(?string $venue): static { $this->venue = $venue; return $this; } public function getStartDate(): ?\DateTimeInterface { return $this->start_date; } public function setStartDate(?\DateTimeInterface $start_date): static { $this->start_date = $start_date; return $this; } public function getEndDate(): ?\DateTimeInterface { return $this->end_date; } public function setEndDate(?\DateTimeInterface $end_date): static { $this->end_date = $end_date; return $this; } public function getStartTime(): ?\DateTimeInterface { return $this->start_time; } public function setStartTime(?\DateTimeInterface $start_time): static { $this->start_time = $start_time; return $this; } public function getEndTime(): ?\DateTimeInterface { return $this->end_time; } public function setEndTime(?\DateTimeInterface $end_time): static { $this->end_time = $end_time; return $this; } public function getAvailableSpaces(): ?int { return $this->available_spaces; } public function setAvailableSpaces(int $available_spaces): static { $this->available_spaces = $available_spaces; return $this; } public function getCostPerPerson(): ?string { return $this->cost_per_person; } public function setCostPerPerson(?string $cost_per_person): static { $this->cost_per_person = $cost_per_person; return $this; } public function getEventDescription() { return $this->event_description; } public function setEventDescription($event_description): static { $this->event_description = $event_description; return $this; } public function getHours(): ?int { return $this->hours; } public function setHours(int $hours): static { $this->hours = $hours; return $this; } public function getCpd(): ?string { return $this->cpd; } public function setCpd(?string $cpd): static { $this->cpd = $cpd; return $this; } public function getCode(): ?string { return $this->code; } public function setCode(?string $code): static { $this->code = $code; return $this; } public function getAccredNum(): ?string { return $this->accred_num; } public function setAccredNum(?string $accred_num): static { $this->accred_num = $accred_num; return $this; } public function getProvince(): ?string { return $this->province; } public function setProvince(?string $province): static { $this->province = $province; return $this; } public function getRegDeadline(): ?\DateTimeInterface { return $this->reg_deadline; } public function setRegDeadline(?\DateTimeInterface $reg_deadline): static { $this->reg_deadline = $reg_deadline; return $this; } public function getMemberDiscount(): ?string { return $this->member_discount; } public function setMemberDiscount(?string $member_discount): static { $this->member_discount = $member_discount; return $this; } public function getEarlyBirdDiscount(): ?string { return $this->early_bird_discount; } public function setEarlyBirdDiscount(?string $early_bird_discount): static { $this->early_bird_discount = $early_bird_discount; return $this; } public function getEarlyBirdDate(): ?\DateTimeInterface { return $this->early_bird_date; } public function setEarlyBirdDate(?\DateTimeInterface $early_bird_date): static { $this->early_bird_date = $early_bird_date; return $this; } public function getCancelled() { return $this->cancelled; } public function setCancelled($cancelled): static { $this->cancelled = $cancelled; return $this; } public function getBankAccName(): ?string { return $this->bank_acc_name; } public function setBankAccName(?string $bank_acc_name): static { $this->bank_acc_name = $bank_acc_name; return $this; } public function getExternalLink(): ?string { return $this->external_link; } public function setExternalLink(?string $external_link): static { $this->external_link = $external_link; return $this; } public function getFileAttachment(): ?string { return $this->file_attachment; } public function setFileAttachment(?string $file_attachment): static { $this->file_attachment = $file_attachment; return $this; } public function getBookingConfirmed(): ?string { return $this->booking_confirmed; } public function setBookingConfirmed(?string $booking_confirmed): static { $this->booking_confirmed = $booking_confirmed; return $this; } public function getAttendanceRegister(): ?string { return $this->attendance_register; } public function setAttendanceRegister(?string $attendance_register): static { $this->attendance_register = $attendance_register; return $this; } public function getRegFormPersonal() { return $this->reg_form_personal; } public function setRegFormPersonal($reg_form_personal): static { $this->reg_form_personal = $reg_form_personal; return $this; } public function getRegFormCompany() { return $this->reg_form_company; } public function setRegFormCompany($reg_form_company): static { $this->reg_form_company = $reg_form_company; return $this; } public function getRegFormSpouse() { return $this->reg_form_spouse; } public function setRegFormSpouse($reg_form_spouse): static { $this->reg_form_spouse = $reg_form_spouse; return $this; } public function getRegFormBooker() { return $this->reg_form_booker; } public function setRegFormBooker($reg_form_booker): static { $this->reg_form_booker = $reg_form_booker; return $this; } public function getRegFormInvoicing() { return $this->reg_form_invoicing; } public function setRegFormInvoicing($reg_form_invoicing): static { $this->reg_form_invoicing = $reg_form_invoicing; return $this; } public function getRegFormDietary() { return $this->reg_form_dietary; } public function setRegFormDietary($reg_form_dietary): static { $this->reg_form_dietary = $reg_form_dietary; return $this; } public function getNametags(): ?int { return $this->nametags; } public function setNametags(int $nametags): static { $this->nametags = $nametags; return $this; } public function getRegFormExhibitor() { return $this->reg_form_exhibitor; } public function setRegFormExhibitor($reg_form_exhibitor): static { $this->reg_form_exhibitor = $reg_form_exhibitor; return $this; } public function getRegFormDinner() { return $this->reg_form_dinner; } public function setRegFormDinner($reg_form_dinner): static { $this->reg_form_dinner = $reg_form_dinner; return $this; } public function getRegFormInfo(): ?string { return $this->reg_form_info; } public function setRegFormInfo(?string $reg_form_info): static { $this->reg_form_info = $reg_form_info; return $this; } public function getAccountsEmail(): ?string { return $this->accounts_email; } public function setAccountsEmail(?string $accounts_email): static { $this->accounts_email = $accounts_email; return $this; } public function getAllowRegDuring() { return $this->allow_reg_during; } public function setAllowRegDuring($allow_reg_during): static { $this->allow_reg_during = $allow_reg_during; return $this; } public function getMinimalRegForm() { return $this->minimal_reg_form; } public function setMinimalRegForm($minimal_reg_form): static { $this->minimal_reg_form = $minimal_reg_form; return $this; } public function getConfirmationDetails(): ?string { return $this->confirmation_details; } public function setConfirmationDetails(?string $confirmation_details): static { $this->confirmation_details = $confirmation_details; return $this; } public function getBannerImgUrl(): ?string { return $this->banner_img_url; } public function setBannerImgUrl(?string $banner_img_url): static { $this->banner_img_url = $banner_img_url; return $this; } /** * @return Collection<int, MarketingAttendee> */ public function getMarketingAttendee(): Collection { return $this->marketing_attendee; } public function addMarketingAttendee(MarketingAttendee $marketingAttendee): static { if (!$this->marketing_attendee->contains($marketingAttendee)) { $this->marketing_attendee->add($marketingAttendee); $marketingAttendee->setMarketingEvent($this); } return $this; } public function removeMarketingAttendee(MarketingAttendee $marketingAttendee): static { if ($this->marketing_attendee->removeElement($marketingAttendee)) { // set the owning side to null (unless already changed) if ($marketingAttendee->getMarketingEvent() === $this) { $marketingAttendee->setMarketingEvent(null); } } return $this; } public function isCancelled(): ?bool { return $this->cancelled; } public function isRegFormPersonal(): ?bool { return $this->reg_form_personal; } public function isRegFormCompany(): ?bool { return $this->reg_form_company; } public function isRegFormSpouse(): ?bool { return $this->reg_form_spouse; } public function isRegFormBooker(): ?bool { return $this->reg_form_booker; } public function isRegFormInvoicing(): ?bool { return $this->reg_form_invoicing; } public function isRegFormDietary(): ?bool { return $this->reg_form_dietary; } public function isRegFormExhibitor(): ?bool { return $this->reg_form_exhibitor; } public function isRegFormDinner(): ?bool { return $this->reg_form_dinner; } public function isAllowRegDuring(): ?bool { return $this->allow_reg_during; } public function isMinimalRegForm(): ?bool { return $this->minimal_reg_form; } }