Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F546251
PhabricatorPronounSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorPronounSetting.php
View Options
<?php
final
class
PhabricatorPronounSetting
extends
PhabricatorSelectSetting
{
const
SETTINGKEY
=
'pronoun'
;
public
function
getSettingName
()
{
return
pht
(
'Pronoun'
);
}
public
function
getSettingPanelKey
()
{
return
PhabricatorAccountSettingsPanel
::
PANELKEY
;
}
protected
function
getSettingOrder
()
{
return
200
;
}
protected
function
getControlInstructions
()
{
return
pht
(
'Choose the pronoun you prefer.'
);
}
public
function
getSettingDefaultValue
()
{
return
PhutilPerson
::
SEX_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
::
SEX_UNKNOWN
=>
$label_unknown
,
PhutilPerson
::
SEX_MALE
=>
$label_his
,
PhutilPerson
::
SEX_FEMALE
=>
$label_her
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:10 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120162
Default Alt Text
PhabricatorPronounSetting.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment