| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- <?php
- namespace Opentalent\OtWidgets\Domain\Model;
- use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
- /**
- * Member of an organization
- */
- class Member extends AbstractEntity
- {
- /**
- * id
- *
- * @var int
- */
- protected $id = -1;
- /**
- * organizationId
- *
- * @var int
- */
- protected $organizationId = -1;
- /**
- * gender ('MISS' or 'MISTER')
- *
- * @var string
- */
- protected $gender = '';
- /**
- * givenName (first name)
- *
- * @var string
- */
- protected $givenName = '';
- /**
- * name
- *
- * @var string
- */
- protected $name = '';
- /**
- * startDate
- *
- * @var \Datetime
- */
- protected $startDate = null;
- /**
- * endDate
- *
- * @var \Datetime
- */
- protected $endDate = null;
- /**
- * instrumentGroup
- *
- * @var string
- */
- protected $instrumentGroup = '';
- /**
- * instrument
- *
- * @var string
- */
- protected $instrument = '';
- /**
- * mission
- *
- * @var string
- */
- protected $mission = '';
- /**
- * personId
- *
- * @var string
- */
- protected $personId = -1;
- /**
- * image
- *
- * @var string
- */
- protected $image = '';
- /**
- * addressCity
- *
- * @var string
- */
- protected $addressCity = '';
- /**
- * streetAddress
- *
- * @var string
- */
- protected $streetAddress = '';
- /**
- * streetAddressSecond
- *
- * @var string
- */
- protected $streetAddressSecond = '';
- /**
- * streetAddressThird
- *
- * @var string
- */
- protected $streetAddressThird = '';
- /**
- * postalCode
- *
- * @var string
- */
- protected $postalCode = '';
- /**
- * telphone
- *
- * @var string
- */
- protected $telphone = '';
- /**
- * mobilPhone
- *
- * @var string
- */
- protected $mobilPhone = '';
- /**
- * email
- *
- * @var string
- */
- protected $email = '';
- /**
- * @return int
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @param int $id
- */
- public function setId(int $id)
- {
- $this->id = $id;
- }
- /**
- * @return int
- */
- public function getOrganizationId()
- {
- return $this->organizationId;
- }
- /**
- * @param int $organizationId
- */
- public function setOrganizationId(int $organizationId)
- {
- $this->organizationId = $organizationId;
- }
- /**
- * @return string
- */
- public function getGender()
- {
- return $this->gender;
- }
- /**
- * @param string $gender
- */
- public function setGender($gender = '')
- {
- $this->gender = $gender;
- }
- /**
- * @return string
- */
- public function getGivenName()
- {
- return $this->givenName;
- }
- /**
- * @param string $givenName
- */
- public function setGivenName($givenName = '')
- {
- $this->givenName = $givenName;
- }
- /**
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * @param string $name
- */
- public function setName($name = '')
- {
- $this->name = $name;
- }
- /**
- * @return \Datetime
- */
- public function getStartDate()
- {
- return $this->startDate;
- }
- /**
- * @param \Datetime $startDate
- */
- public function setStartDate(\Datetime $startDate)
- {
- $this->startDate = $startDate;
- }
- /**
- * @return \Datetime
- */
- public function getEndDate()
- {
- return $this->endDate;
- }
- /**
- * @param \Datetime $endDate
- */
- public function setEndDate(\Datetime $endDate)
- {
- $this->endDate = $endDate;
- }
- /**
- * @return string
- */
- public function getInstrumentGroup()
- {
- return $this->instrumentGroup;
- }
- /**
- * @param string $instrumentGroup
- */
- public function setInstrumentGroup($instrumentGroup = '')
- {
- $this->instrumentGroup = $instrumentGroup;
- }
- /**
- * @return string
- */
- public function getInstrument()
- {
- return $this->instrument;
- }
- /**
- * @param string $instrument
- */
- public function setInstrument($instrument = '')
- {
- $this->instrument = $instrument;
- }
- /**
- * @return string
- */
- public function getMission()
- {
- return $this->mission;
- }
- /**
- * @param string $mission
- */
- public function setMission($mission = '')
- {
- $this->mission = $mission;
- }
- /**
- * @return int
- */
- public function getPersonId()
- {
- return $this->personId;
- }
- /**
- * @param int $personId
- */
- public function setPersonId(int $personId)
- {
- $this->personId = $personId;
- }
- /**
- * @return string
- */
- public function getImage()
- {
- return $this->image;
- }
- /**
- * @param string $image
- */
- public function setImage($image = '')
- {
- $this->image = $image;
- }
- /**
- * @return string
- */
- public function getAdressCity()
- {
- return $this->addressCity;
- }
- /**
- * @param string $addressCity
- */
- public function setAdressCity($addressCity = '')
- {
- $this->addressCity = $addressCity;
- }
- /**
- * @return string
- */
- public function getStreetAdress()
- {
- return $this->streetAddress;
- }
- /**
- * @param string $streetAddress
- */
- public function setStreetAdress($streetAddress = '')
- {
- $this->streetAddress = $streetAddress;
- }
- /**
- * @return string
- */
- public function getStreetAdressSecond()
- {
- return $this->streetAddressSecond;
- }
- /**
- * @param string $streetAddressSecond
- */
- public function setStreetAdressSecond($streetAddressSecond = '')
- {
- $this->streetAddressSecond = $streetAddressSecond;
- }
- /**
- * @return string
- */
- public function getStreetAdressThird()
- {
- return $this->streetAddressThird;
- }
- /**
- * @param string $streetAddressThird
- */
- public function setStreetAdressThird($streetAddressThird = '')
- {
- $this->streetAddressThird = $streetAddressThird;
- }
- /**
- * @return string
- */
- public function getPostalCode()
- {
- return $this->postalCode;
- }
- /**
- * @param string $postalCode
- */
- public function setPostalCode($postalCode = '')
- {
- $this->postalCode = $postalCode;
- }
- /**
- * @return string
- */
- public function getTelphone()
- {
- return $this->telphone;
- }
- /**
- * @param string $telphone
- */
- public function setTelphone($telphone = '')
- {
- $this->telphone = $telphone;
- }
- /**
- * @return string
- */
- public function getMobilPhone()
- {
- return $this->mobilPhone;
- }
- /**
- * @param string $mobilPhone
- */
- public function setMobilPhone($mobilPhone = '')
- {
- $this->mobilPhone = $mobilPhone;
- }
- /**
- * @return string
- */
- public function getEmail()
- {
- return $this->email;
- }
- /**
- * @param string $email
- */
- public function setEmail($email = '')
- {
- $this->email = $email;
- }
- /**
- * Return a full name for the member
- *
- * @return string
- */
- public function getFullName()
- {
- if ($this->getGivenName() && $this->getName()) {
- return $this->getGivenName() . ' ' . $this->getName();
- } else if ($this->getName() && $this->getGender()) {
- return 'M. ' . $this->getName();
- } else {
- return '';
- }
- }
- }
|