Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96370821
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
Thu, Dec 26, 01:31
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Dec 28, 01:31 (1 d, 12 h)
Engine
blob
Format
Raw Data
Handle
23174811
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