Changeset View
Changeset View
Standalone View
Standalone View
src/applications/people/storage/PhabricatorUser.php
| Show First 20 Lines • Show All 566 Lines • ▼ Show 20 Lines | /* -( Settings )----------------------------------------------------------- */ | ||||
| */ | */ | ||||
| public function overrideTimezoneIdentifier($identifier) { | public function overrideTimezoneIdentifier($identifier) { | ||||
| $timezone_key = PhabricatorTimezoneSetting::SETTINGKEY; | $timezone_key = PhabricatorTimezoneSetting::SETTINGKEY; | ||||
| $this->settingCacheKeys[$timezone_key] = true; | $this->settingCacheKeys[$timezone_key] = true; | ||||
| $this->settingCache[$timezone_key] = $identifier; | $this->settingCache[$timezone_key] = $identifier; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getSex() { | public function getGender() { | ||||
| return $this->getUserSetting(PhabricatorPronounSetting::SETTINGKEY); | return $this->getUserSetting(PhabricatorPronounSetting::SETTINGKEY); | ||||
| } | } | ||||
| public function loadEditorLink( | public function loadEditorLink( | ||||
| $path, | $path, | ||||
| $line, | $line, | ||||
| PhabricatorRepository $repository = null) { | PhabricatorRepository $repository = null) { | ||||
| ▲ Show 20 Lines • Show All 934 Lines • Show Last 20 Lines | |||||