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 /
MemberBundle /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
ADecMemberFirm.php
60.94
KB
-rwxrwxr-x
2026-05-20 09:05
ADecTransformation.php
26.86
KB
-rwxrwxr-x
2026-05-20 09:05
HRForum.php
5.48
KB
-rwxrwxr-x
2026-04-02 11:48
MemberContact.php
10.66
KB
-rwxrwxr-x
2026-05-25 12:28
MemberFirm.php
64.73
KB
-rwxrwxr-x
2026-05-25 12:28
MemberFirmTransformation.php
27.15
KB
-rwxrwxr-x
2026-05-25 12:28
MemberOffice.php
16.15
KB
-rwxrwxr-x
2026-04-02 11:48
Save
Rename
<?php namespace App\MemberBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; /** * MemberOffice * * @ORM\Table(name="tblMemberFirmOffices") * @ORM\Entity(repositoryClass="App\MemberBundle\Repository\MemberOfficeRepository") */ class MemberOffice { /** * @ORM\Id * @ORM\Column(name="OfficeID", type="integer") * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * @ORM\Column(name="OfficeName", type="string", length=70) */ private $office_name; /** * @ORM\Column(name="OfficeStatus", type="string", length=50, nullable=true) */ private $office_status; /** * @ORM\Column(name="FullOrPartTime", type="string", length=10, nullable=true) */ private $full_or_part_time; /** * @ORM\Column(name="Language", type="string", length=10, nullable=true) */ private $language; /** * @ORM\Column(name="PostalAddress", type="string", length=50, nullable=true) */ private $postal_address; /** * @ORM\Column(name="Address2", type="string", length=50, nullable=true) */ private $address_2; /** * @ORM\Column(name="TownCity", type="string", length=50, nullable=true) */ private $town_city; /** * @ORM\Column(name="Country", type="string", length=50, nullable=true) */ private $country; /** * @ORM\Column(name="PostalCode", type="string", length=5, nullable=true) */ private $postal_code; /** * @ORM\Column(name="BldgName", type="string", length=50, nullable=true) */ private $bldg_name; /** * @ORM\Column(name="StreetName", type="string", length=50, nullable=true) */ private $street_name; /** * @ORM\Column(name="Suburb", type="string", length=50, nullable=true) */ private $suburb; /** * @ORM\Column(name="Telephone", type="string", length=50, nullable=true) */ private $telephone; /** * @ORM\Column(name="Fax", type="string", length=50, nullable=true) */ private $fax; /** * @ORM\Column(name="Email", type="string", length=255, nullable=true) */ private $email; /** * @ORM\Column(name="Old_PrincipalPrEng", type="integer", nullable=true) */ private $old_principal_pr_eng; /** * @ORM\Column(name="Old_PrincipalPrTech", type="integer", nullable=true) */ private $old_principal_pr_tech; /** * @ORM\Column(name="Old_PrincipalOther", type="integer", nullable=true) */ private $old_principal_other; /** * @ORM\Column(name="Old_TechPersonnel", type="integer", nullable=true) */ private $old_tech_personnel; /** * @ORM\Column(name="Old_OtherPersonnel", type="integer", nullable=true) */ private $old_other_personnel; /** * @ORM\Column(name="BulletinCopies", type="integer", nullable=true) */ private $bulletin_copies; /** * @ORM\Column(name="Province", type="string", length=50, nullable=true) */ private $province; /** * @ORM\Column(name="SaaceBranch", type="string", length=50, nullable=true) */ private $saace_branch; /** * @ORM\Column(name="GeoLocation", type="string", length=50, nullable=true) */ private $geo_location; /** * @ORM\Column(name="ProfessionalStaff", type="integer", nullable=true) */ private $professional_staff; /** * @ORM\Column(name="NonProfTechStaff", type="integer", nullable=true) */ private $non_prof_tech_staff; /** * @ORM\Column(name="OtherStaff", type="integer", nullable=true) */ private $other_staff; /** * @ORM\Column(name="TimeUpdate", type="datetime", nullable=true) */ private $time_update; /** * @ORM\Column(name="GeoLocationLocal", type="string", length=255, nullable=true) */ private $geo_location_local; /** * @ORM\Column(name="GeoLocationDistrict", type="string", length=255, nullable=true) */ private $geo_location_district; /** * @ORM\Column(name="LNumber", type="string", length=50, nullable=true) */ private $l_number; /** * @ORM\Column(name="HoldingCompany", type="string", length=255, nullable=true) */ private $holding_company; /** * @ORM\Column(name="HRName", type="string", length=255, nullable=true) */ private $hr_name; /** * @ORM\Column(name="HREmail", type="string", length=255, nullable=true) */ private $hr_email; /** * @ORM\Column(name="Fidic", type="string", length=50, nullable=true) */ private $fidic; /** * @ORM\Column(name="YPFContactName", type="string", length=255, nullable=true) */ private $ypf_contact_name; /** * @ORM\Column(name="YPFContactEmail", type="string", length=255, nullable=true) */ private $ypf_contact_email; /** * @ORM\Column(name="YPFContactTel", type="string", length=255, nullable=true) */ private $ypf_contact_tel; /** * @ORM\Column(name="YPFContactCell", type="string", length=255, nullable=true) */ private $ypf_contact_cell; /** * @ORM\ManyToOne(targetEntity="MemberFirm", inversedBy="member_office") * @ORM\JoinColumn(name="FirmID", referencedColumnName="FirmID") */ private $member_firm; /** * @ORM\OneToMany(targetEntity="MemberContact", mappedBy="member_office") */ private $member_contact; public function __construct() { $this->member_contact = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getOfficeName(): ?string { return $this->office_name; } public function setOfficeName(string $office_name): static { $this->office_name = $office_name; return $this; } public function getOfficeStatus(): ?string { return $this->office_status; } public function setOfficeStatus(?string $office_status): static { $this->office_status = $office_status; return $this; } public function getFullOrPartTime(): ?string { return $this->full_or_part_time; } public function setFullOrPartTime(?string $full_or_part_time): static { $this->full_or_part_time = $full_or_part_time; return $this; } public function getLanguage(): ?string { return $this->language; } public function setLanguage(?string $language): static { $this->language = $language; return $this; } public function getPostalAddress(): ?string { return $this->postal_address; } public function setPostalAddress(?string $postal_address): static { $this->postal_address = $postal_address; return $this; } public function getAddress2(): ?string { return $this->address_2; } public function setAddress2(?string $address_2): static { $this->address_2 = $address_2; return $this; } public function getTownCity(): ?string { return $this->town_city; } public function setTownCity(?string $town_city): static { $this->town_city = $town_city; return $this; } public function getCountry(): ?string { return $this->country; } public function setCountry(?string $country): static { $this->country = $country; return $this; } public function getPostalCode(): ?string { return $this->postal_code; } public function setPostalCode(?string $postal_code): static { $this->postal_code = $postal_code; return $this; } public function getBldgName(): ?string { return $this->bldg_name; } public function setBldgName(?string $bldg_name): static { $this->bldg_name = $bldg_name; return $this; } public function getStreetName(): ?string { return $this->street_name; } public function setStreetName(?string $street_name): static { $this->street_name = $street_name; return $this; } public function getSuburb(): ?string { return $this->suburb; } public function setSuburb(?string $suburb): static { $this->suburb = $suburb; return $this; } public function getTelephone(): ?string { return $this->telephone; } public function setTelephone(?string $telephone): static { $this->telephone = $telephone; return $this; } public function getFax(): ?string { return $this->fax; } public function setFax(?string $fax): static { $this->fax = $fax; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(?string $email): static { $this->email = $email; return $this; } public function getOldPrincipalPrEng(): ?int { return $this->old_principal_pr_eng; } public function setOldPrincipalPrEng(?int $old_principal_pr_eng): static { $this->old_principal_pr_eng = $old_principal_pr_eng; return $this; } public function getOldPrincipalPrTech(): ?int { return $this->old_principal_pr_tech; } public function setOldPrincipalPrTech(?int $old_principal_pr_tech): static { $this->old_principal_pr_tech = $old_principal_pr_tech; return $this; } public function getOldPrincipalOther(): ?int { return $this->old_principal_other; } public function setOldPrincipalOther(?int $old_principal_other): static { $this->old_principal_other = $old_principal_other; return $this; } public function getOldTechPersonnel(): ?int { return $this->old_tech_personnel; } public function setOldTechPersonnel(?int $old_tech_personnel): static { $this->old_tech_personnel = $old_tech_personnel; return $this; } public function getOldOtherPersonnel(): ?int { return $this->old_other_personnel; } public function setOldOtherPersonnel(?int $old_other_personnel): static { $this->old_other_personnel = $old_other_personnel; return $this; } public function getBulletinCopies(): ?int { return $this->bulletin_copies; } public function setBulletinCopies(?int $bulletin_copies): static { $this->bulletin_copies = $bulletin_copies; return $this; } public function getProvince(): ?string { return $this->province; } public function setProvince(?string $province): static { $this->province = $province; return $this; } public function getSaaceBranch(): ?string { return $this->saace_branch; } public function setSaaceBranch(?string $saace_branch): static { $this->saace_branch = $saace_branch; return $this; } public function getGeoLocation(): ?string { return $this->geo_location; } public function setGeoLocation(?string $geo_location): static { $this->geo_location = $geo_location; return $this; } public function getProfessionalStaff(): ?int { return $this->professional_staff; } public function setProfessionalStaff(?int $professional_staff): static { $this->professional_staff = $professional_staff; return $this; } public function getNonProfTechStaff(): ?int { return $this->non_prof_tech_staff; } public function setNonProfTechStaff(?int $non_prof_tech_staff): static { $this->non_prof_tech_staff = $non_prof_tech_staff; return $this; } public function getOtherStaff(): ?int { return $this->other_staff; } public function setOtherStaff(?int $other_staff): static { $this->other_staff = $other_staff; return $this; } public function getTimeUpdate(): ?\DateTimeInterface { return $this->time_update; } public function setTimeUpdate(?\DateTimeInterface $time_update): static { $this->time_update = $time_update; return $this; } public function getGeoLocationLocal(): ?string { return $this->geo_location_local; } public function setGeoLocationLocal(?string $geo_location_local): static { $this->geo_location_local = $geo_location_local; return $this; } public function getGeoLocationDistrict(): ?string { return $this->geo_location_district; } public function setGeoLocationDistrict(?string $geo_location_district): static { $this->geo_location_district = $geo_location_district; return $this; } public function getLNumber(): ?string { return $this->l_number; } public function setLNumber(?string $l_number): static { $this->l_number = $l_number; return $this; } public function getHoldingCompany(): ?string { return $this->holding_company; } public function setHoldingCompany(?string $holding_company): static { $this->holding_company = $holding_company; return $this; } public function getHrName(): ?string { return $this->hr_name; } public function setHrName(?string $hr_name): static { $this->hr_name = $hr_name; return $this; } public function getHrEmail(): ?string { return $this->hr_email; } public function setHrEmail(?string $hr_email): static { $this->hr_email = $hr_email; return $this; } public function getFidic(): ?string { return $this->fidic; } public function setFidic(?string $fidic): static { $this->fidic = $fidic; return $this; } public function getYpfContactName(): ?string { return $this->ypf_contact_name; } public function setYpfContactName(?string $ypf_contact_name): static { $this->ypf_contact_name = $ypf_contact_name; return $this; } public function getYpfContactEmail(): ?string { return $this->ypf_contact_email; } public function setYpfContactEmail(?string $ypf_contact_email): static { $this->ypf_contact_email = $ypf_contact_email; return $this; } public function getYpfContactTel(): ?string { return $this->ypf_contact_tel; } public function setYpfContactTel(?string $ypf_contact_tel): static { $this->ypf_contact_tel = $ypf_contact_tel; return $this; } public function getYpfContactCell(): ?string { return $this->ypf_contact_cell; } public function setYpfContactCell(?string $ypf_contact_cell): static { $this->ypf_contact_cell = $ypf_contact_cell; return $this; } /** * @return Collection<int, MemberContact> */ public function getMemberContact(): Collection { return $this->member_contact; } public function setMemberContact(Collection $member_contact): static { $this->member_contact = $member_contact; return $this; } public function getMemberFirm(): ?MemberFirm { return $this->member_firm; } public function setMemberFirm(?MemberFirm $member_firm): static { $this->member_firm = $member_firm; return $this; } public function addMemberContact(MemberContact $memberContact): static { if (!$this->member_contact->contains($memberContact)) { $this->member_contact->add($memberContact); $memberContact->setMemberOffice($this); } return $this; } public function removeMemberContact(MemberContact $memberContact): static { if ($this->member_contact->removeElement($memberContact)) { // set the owning side to null (unless already changed) if ($memberContact->getMemberOffice() === $this) { $memberContact->setMemberOffice(null); } } return $this; } }