Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F450215
PhabricatorSourceDocumentEngine.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
PhabricatorSourceDocumentEngine.php
View Options
<?php
final
class
PhabricatorSourceDocumentEngine
extends
PhabricatorTextDocumentEngine
{
const
ENGINEKEY
=
'source'
;
public
function
getViewAsLabel
(
PhabricatorDocumentRef
$ref
)
{
return
pht
(
'View as Source'
);
}
public
function
canConfigureHighlighting
(
PhabricatorDocumentRef
$ref
)
{
return
true
;
}
public
function
canBlame
(
PhabricatorDocumentRef
$ref
)
{
return
true
;
}
protected
function
getDocumentIconIcon
(
PhabricatorDocumentRef
$ref
)
{
return
'fa-code'
;
}
protected
function
getContentScore
(
PhabricatorDocumentRef
$ref
)
{
return
1500
;
}
protected
function
newDocumentContent
(
PhabricatorDocumentRef
$ref
)
{
$content
=
$this
->
loadTextData
(
$ref
);
$messages
=
array
();
$highlighting
=
$this
->
getHighlightingConfiguration
();
if
(
$highlighting
!==
null
)
{
$content
=
PhabricatorSyntaxHighlighter
::
highlightWithLanguage
(
$highlighting
,
$content
);
}
else
{
$highlight_limit
=
DifferentialChangesetParser
::
HIGHLIGHT_BYTE_LIMIT
;
if
(
strlen
(
$content
)
>
$highlight_limit
)
{
$messages
[]
=
$this
->
newMessage
(
pht
(
'This file is larger than %s, so syntax highlighting was skipped.'
,
phutil_format_bytes
(
$highlight_limit
)));
}
else
{
$content
=
PhabricatorSyntaxHighlighter
::
highlightWithFilename
(
$ref
->
getName
(),
$content
);
}
}
$options
=
array
();
if
(
$ref
->
getBlameURI
()
&&
$this
->
getBlameEnabled
())
{
$content
=
phutil_split_lines
(
$content
);
$blame
=
range
(
1
,
count
(
$content
));
$blame
=
array_fuse
(
$blame
);
$options
[
'blame'
]
=
$blame
;
}
if
(
$ref
->
getCoverage
())
{
$options
[
'coverage'
]
=
$ref
->
getCoverage
();
}
return
array
(
$messages
,
$this
->
newTextDocumentContent
(
$ref
,
$content
,
$options
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 8:26 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
67739
Default Alt Text
PhabricatorSourceDocumentEngine.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment