getData('userId'); } /** * Set the ID of the user. * @param $userId int */ function setUserId($userId) { return $this->setData('userId', $userId); } /** * Get username. * @return string */ function getUsername() { return $this->getData('username'); } /** * Set username. * @param $username string */ function setUsername($username) { return $this->setData('username', $username); } /** * Get localized user signature. */ function getUserSignature() { return $this->getLocalizedData('signature'); } /** * Get email signature. * @param $locale string * @return string */ function getSignature($locale) { return $this->getData('signature', $locale); } /** * Set signature. * @param $signature string * @param $locale string */ function setSignature($signature, $locale) { return $this->setData('signature', $signature, $locale); } /** * Get password (encrypted). * @return string */ function getPassword() { return $this->getData('password'); } /** * Set password (assumed to be already encrypted). * @param $password string */ function setPassword($password) { return $this->setData('password', $password); } /** * Get first name. * @return string */ function getFirstName() { return $this->getData('firstName'); } /** * Set first name. * @param $firstName string */ function setFirstName($firstName) { return $this->setData('firstName', $firstName); } /** * Get middle name. * @return string */ function getMiddleName() { return $this->getData('middleName'); } /** * Set middle name. * @param $middleName string */ function setMiddleName($middleName) { return $this->setData('middleName', $middleName); } /** * Get initials. * @return string */ function getInitials() { return $this->getData('initials'); } /** * Set initials. * @param $initials string */ function setInitials($initials) { return $this->setData('initials', $initials); } /** * Get last name. * @return string */ function getLastName() { return $this->getData('lastName'); } /** * Set last name. * @param $lastName string */ function setLastName($lastName) { return $this->setData('lastName', $lastName); } /** * Get user salutation. * @return string */ function getSalutation() { return $this->getData('salutation'); } /** * Set user salutation. * @param $salutation string */ function setSalutation($salutation) { return $this->setData('salutation', $salutation); } /** * Get user gender. * @return string */ function getGender() { return $this->getData('gender'); } /** * Set user gender. * @param $gender string */ function setGender($gender) { return $this->setData('gender', $gender); } /** * Get affiliation (position, institution, etc.). * @return string */ function getAffiliation() { return $this->getData('affiliation'); } /** * Set affiliation. * @param $affiliation string */ function setAffiliation($affiliation) { return $this->setData('affiliation', $affiliation); } /** * Get email address. * @return string */ function getEmail() { return $this->getData('email'); } /** * Set email address. * @param $email string */ function setEmail($email) { return $this->setData('email', $email); } /** * Get URL. * @return string */ function getUrl() { return $this->getData('url'); } /** * Set URL. * @param $url string */ function setUrl($url) { return $this->setData('url', $url); } /** * Get phone number. * @return string */ function getPhone() { return $this->getData('phone'); } /** * Set phone number. * @param $phone string */ function setPhone($phone) { return $this->setData('phone', $phone); } /** * Get fax number. * @return string */ function getFax() { return $this->getData('fax'); } /** * Set fax number. * @param $fax string */ function setFax($fax) { return $this->setData('fax', $fax); } /** * Get mailing address. * @return string */ function getMailingAddress() { return $this->getData('mailingAddress'); } /** * Set mailing address. * @param $mailingAddress string */ function setMailingAddress($mailingAddress) { return $this->setData('mailingAddress', $mailingAddress); } /** * Get time zone. * @return string */ function getTimeZone() { return $this->getData('timeZone'); } /** * Set time zone. * @param $timeZone string */ function setTimeZone($timeZone) { return $this->setData('timeZone', $timeZone); } /** * Get country. * @return string */ function getCountry() { return $this->getData('country'); } /** * Set country. * @param $country string */ function setCountry($country) { return $this->setData('country', $country); } /** * Get localized user biography. */ function getUserBiography() { return $this->getLocalizedData('biography'); } /** * Get user biography. * @param $locale string * @return string */ function getBiography($locale) { return $this->getData('biography', $locale); } /** * Set user biography. * @param $biography string * @param $locale string */ function setBiography($biography, $locale) { return $this->setData('biography', $biography, $locale); } /** * Get localized user interests. */ function getUserInterests() { return $this->getLocalizedData('interests'); } /** * Get user reviewing interests. * @param $locale string * @return string */ function getInterests($locale) { return $this->getData('interests', $locale); } /** * Set user reviewing interests. * @param $interests string * @param $locale string */ function setInterests($interests, $locale) { return $this->setData('interests', $interests, $locale); } /** * Get user's working languages. * @return array */ function getLocales() { $locales = $this->getData('locales'); return isset($locales) ? $locales : array(); } /** * Set user's working languages. * @param $locales array */ function setLocales($locales) { return $this->setData('locales', $locales); } /** * Get date user last sent an email. * @return datestamp (YYYY-MM-DD HH:MM:SS) */ function getDateLastEmail() { return $this->getData('dateLastEmail'); } /** * Set date user last sent an email. * @param $dateLastEmail datestamp (YYYY-MM-DD HH:MM:SS) */ function setDateLastEmail($dateLastEmail) { return $this->setData('dateLastEmail', $dateLastEmail); } /** * Get date user registered with the site. * @return datestamp (YYYY-MM-DD HH:MM:SS) */ function getDateRegistered() { return $this->getData('dateRegistered'); } /** * Set date user registered with the site. * @param $dateRegistered datestamp (YYYY-MM-DD HH:MM:SS) */ function setDateRegistered($dateRegistered) { return $this->setData('dateRegistered', $dateRegistered); } /** * Get date user email was validated with the site. * @return datestamp (YYYY-MM-DD HH:MM:SS) */ function getDateValidated() { return $this->getData('dateValidated'); } /** * Set date user email was validated with the site. * @param $dateValidated datestamp (YYYY-MM-DD HH:MM:SS) */ function setDateValidated($dateValidated) { return $this->setData('dateValidated', $dateValidated); } /** * Get date user last logged in to the site. * @return datestamp */ function getDateLastLogin() { return $this->getData('dateLastLogin'); } /** * Set date user last logged in to the site. * @param $dateLastLogin datestamp */ function setDateLastLogin($dateLastLogin) { return $this->setData('dateLastLogin', $dateLastLogin); } /** * Check if user must change their password on their next login. * @return boolean */ function getMustChangePassword() { return $this->getData('mustChangePassword'); } /** * Set whether or not user must change their password on their next login. * @param $mustChangePassword boolean */ function setMustChangePassword($mustChangePassword) { return $this->setData('mustChangePassword', $mustChangePassword); } /** * Check if user is disabled. * @return boolean */ function getDisabled() { return $this->getData('disabled'); } /** * Set whether or not user is disabled. * @param $disabled boolean */ function setDisabled($disabled) { return $this->setData('disabled', $disabled); } /** * Get the reason the user was disabled. * @return string */ function getDisabledReason() { return $this->getData('disabled_reason'); } /** * Set the reason the user is disabled. * @param $reasonDisabled string */ function setDisabledReason($reasonDisabled) { return $this->setData('disabled_reason', $reasonDisabled); } /** * Get ID of authentication source for this user. * @return int */ function getAuthId() { return $this->getData('authId'); } /** * Set ID of authentication source for this user. * @param $authId int */ function setAuthId($authId) { return $this->setData('authId', $authId); } /** * Retrieve array of user settings. * @param conferenceId int * @return array */ function &getSettings($conferenceId = null) { $userSettingsDao = &DAORegistry::getDAO('UserSettingsDAO'); $settings = &$userSettingsDao->getSettingsByConference($this->getData('userId'), $conferenceId); return $settings; } /** * Retrieve a user setting value. * @param $name * @param $conferenceId int * @return mixed */ function &getSetting($name, $conferenceId = null) { $userSettingsDao = &DAORegistry::getDAO('UserSettingsDAO'); $setting = &$userSettingsDao->getSetting($this->getData('userId'), $name, $conferenceId); return $setting; } /** * Get the user's complete name. * Includes first name, middle name (if applicable), and last name. * @param $lastFirst boolean return in "LastName, FirstName" format * @return string */ function getFullName($lastFirst = false) { if ($lastFirst) { return $this->getData('lastName') . ', ' . $this->getData('firstName') . ($this->getData('middleName') != '' ? ' ' . $this->getData('middleName') : ''); } else { return $this->getData('firstName') . ' ' . ($this->getData('middleName') != '' ? $this->getData('middleName') . ' ' : '') . $this->getData('lastName'); } } function getContactSignature() { $signature = $this->getFullName(); if ($this->getAffiliation()) $signature .= "\n" . $this->getAffiliation(); if ($this->getPhone()) $signature .= "\n" . Locale::translate('user.phone') . ' ' . $this->getPhone(); if ($this->getFax()) $signature .= "\n" . Locale::translate('user.fax') . ' ' . $this->getFax(); $signature .= "\n" . $this->getEmail(); return $signature; } } ?>