Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92733050
PhabricatorMonospacedFontSetting.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
Sat, Nov 23, 06:10
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 25, 06:10 (2 d)
Engine
blob
Format
Raw Data
Handle
22500066
Attached To
rPH Phabricator
PhabricatorMonospacedFontSetting.php
View Options
<?php
final
class
PhabricatorMonospacedFontSetting
extends
PhabricatorStringSetting
{
const
SETTINGKEY
=
'monospaced'
;
public
function
getSettingName
()
{
return
pht
(
'Monospaced Font'
);
}
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
(!
strlen
(
$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, 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
);
}
}
Event Timeline
Log In to Comment