Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93635493
PhabricatorSyntaxStyle.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 30, 08:07
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 08:07 (2 d)
Engine
blob
Format
Raw Data
Handle
22680853
Attached To
rPH Phabricator
PhabricatorSyntaxStyle.php
View Options
<?php
abstract
class
PhabricatorSyntaxStyle
extends
Phobject
{
abstract
public
function
getStyleName
();
abstract
public
function
getStyleMap
();
final
public
function
getStyleOrder
()
{
return
(
string
)
id
(
new
PhutilSortVector
())
->
addInt
(
$this
->
isDefaultStyle
()
?
0
:
1
)
->
addString
(
$this
->
getStyleName
());
}
final
public
function
getSyntaxStyleKey
()
{
return
$this
->
getPhobjectClassConstant
(
'STYLEKEY'
);
}
final
public
function
isDefaultStyle
()
{
return
(
$this
->
getSyntaxStyleKey
()
==
'default'
);
}
public
static
function
getAllStyles
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getSyntaxStyleKey'
)
->
setSortMethod
(
'getStyleName'
)
->
execute
();
}
final
public
function
getRemarkupStyleMap
()
{
$map
=
array
(
'rbw_r'
=>
'color: red'
,
'rbw_o'
=>
'color: orange'
,
'rbw_y'
=>
'color: yellow'
,
'rbw_g'
=>
'color: green'
,
'rbw_b'
=>
'color: blue'
,
'rbw_i'
=>
'color: indigo'
,
'rbw_v'
=>
'color: violet'
,
);
return
$map
+
$this
->
getStyleMap
();
}
}
Event Timeline
Log In to Comment