Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112932319
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
Tue, May 13, 21:19
Size
1 KB
Mime Type
text/x-php
Expires
Thu, May 15, 21:19 (2 d)
Engine
blob
Format
Raw Data
Handle
26161689
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