Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92689184
PhabricatorPronounSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 22, 19:22
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 19:22 (2 d)
Engine
blob
Format
Raw Data
Handle
22487233
Attached To
rPH Phabricator
PhabricatorPronounSetting.php
View Options
<?php
final
class
PhabricatorPronounSetting
extends
PhabricatorSelectSetting
{
const
SETTINGKEY
=
'pronoun'
;
public
function
getSettingName
()
{
return
pht
(
'Pronoun'
);
}
public
function
getSettingPanelKey
()
{
return
PhabricatorLanguageSettingsPanel
::
PANELKEY
;
}
protected
function
getSettingOrder
()
{
return
200
;
}
protected
function
getControlInstructions
()
{
return
pht
(
'Choose the pronoun you prefer.'
);
}
public
function
getSettingDefaultValue
()
{
return
PhutilPerson
::
GENDER_UNKNOWN
;
}
protected
function
getSelectOptions
()
{
// TODO: When editing another user's settings as an administrator, this
// is not the best username: the user's username would be better.
$viewer
=
$this
->
getViewer
();
$username
=
$viewer
->
getUsername
();
$label_unknown
=
pht
(
'%s updated their profile'
,
$username
);
$label_her
=
pht
(
'%s updated her profile'
,
$username
);
$label_his
=
pht
(
'%s updated his profile'
,
$username
);
return
array
(
PhutilPerson
::
GENDER_UNKNOWN
=>
$label_unknown
,
PhutilPerson
::
GENDER_MASCULINE
=>
$label_his
,
PhutilPerson
::
GENDER_FEMININE
=>
$label_her
,
);
}
}
Event Timeline
Log In to Comment