Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F547966
PhabricatorMonospacedFontSetting.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
PhabricatorMonospacedFontSetting.php
View Options
<?php
final
class
PhabricatorMonospacedFontSetting
extends
PhabricatorStringSetting
{
const
SETTINGKEY
=
'monospaced'
;
public
function
getSettingName
()
{
return
pht
(
'Monospaced Font'
);
}
public
function
getSettingPanelKey
()
{
return
PhabricatorDisplayPreferencesSettingsPanel
::
PANELKEY
;
}
protected
function
getSettingOrder
()
{
return
500
;
}
protected
function
getControlInstructions
()
{
return
pht
(
'You can customize the font used when showing monospaced text, '
.
'including source code. You should enter a valid CSS font declaration '
.
'like: `13px Consolas`'
);
}
public
function
validateTransactionValue
(
$value
)
{
if
(!
phutil_nonempty_string
(
$value
))
{
return
;
}
$filtered
=
self
::
filterMonospacedCSSRule
(
$value
);
if
(
$filtered
!==
$value
)
{
throw
new
Exception
(
pht
(
'Monospaced font value "%s" is unsafe. You may only enter '
.
'letters, numbers, spaces, commas, periods, hyphens, '
.
'forward slashes, and double quotes'
,
$value
));
}
}
public
static
function
filterMonospacedCSSRule
(
$monospaced
)
{
// Prevent the user from doing dangerous things.
return
preg_replace
(
'([^a-z0-9 ,"./-]+)i'
,
''
,
$monospaced
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:41 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
121782
Default Alt Text
PhabricatorMonospacedFontSetting.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment