Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108434435
PhabricatorAccessibilitySetting.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
Wed, Apr 16, 18:34
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Apr 18, 18:34 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25591482
Attached To
rPH Phabricator
PhabricatorAccessibilitySetting.php
View Options
<?php
final
class
PhabricatorAccessibilitySetting
extends
PhabricatorSelectSetting
{
const
SETTINGKEY
=
'resource-postprocessor'
;
public
function
getSettingName
()
{
return
pht
(
'Accessibility'
);
}
public
function
getSettingPanelKey
()
{
return
PhabricatorDisplayPreferencesSettingsPanel
::
PANELKEY
;
}
protected
function
getSettingOrder
()
{
return
100
;
}
protected
function
getControlInstructions
()
{
return
pht
(
'If you have difficulty reading the Phabricator UI, this setting '
.
'may make Phabricator more accessible.'
);
}
public
function
getSettingDefaultValue
()
{
return
CelerityDefaultPostprocessor
::
POSTPROCESSOR_KEY
;
}
protected
function
getSelectOptions
()
{
$postprocessor_map
=
CelerityPostprocessor
::
getAllPostprocessors
();
$postprocessor_map
=
mpull
(
$postprocessor_map
,
'getPostprocessorName'
);
asort
(
$postprocessor_map
);
$postprocessor_order
=
array
(
CelerityDefaultPostprocessor
::
POSTPROCESSOR_KEY
,
);
$postprocessor_map
=
array_select_keys
(
$postprocessor_map
,
$postprocessor_order
)
+
$postprocessor_map
;
return
$postprocessor_map
;
}
}
Event Timeline
Log In to Comment