Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F8874269
ShellLogView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
ShellLogView.php
View Options
<?php
final
class
ShellLogView
extends
AphrontView
{
private
$start
=
1
;
private
$lines
;
private
$limit
;
private
$highlights
=
array
();
public
function
setStart
(
$start
)
{
$this
->
start
=
$start
;
return
$this
;
}
public
function
setLimit
(
$limit
)
{
$this
->
limit
=
$limit
;
return
$this
;
}
public
function
setLines
(
array
$lines
)
{
$this
->
lines
=
$lines
;
return
$this
;
}
public
function
setHighlights
(
array
$highlights
)
{
$this
->
highlights
=
array_fuse
(
$highlights
);
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-source-code-view-css'
);
require_celerity_resource
(
'syntax-highlighting-css'
);
Javelin
::
initBehavior
(
'phabricator-oncopy'
,
array
());
$line_number
=
$this
->
start
;
$rows
=
array
();
foreach
(
$this
->
lines
as
$line
)
{
$hit_limit
=
$this
->
limit
&&
(
$line_number
==
$this
->
limit
)
&&
(
count
(
$this
->
lines
)
!=
$this
->
limit
);
if
(
$hit_limit
)
{
$content_number
=
''
;
$content_line
=
phutil_tag
(
'span'
,
array
(
'class'
=>
'c'
,
),
pht
(
'...'
));
}
else
{
$content_number
=
$line_number
;
$content_line
=
$line
;
}
$row_attributes
=
array
();
if
(
isset
(
$this
->
highlights
[
$line_number
]))
{
$row_attributes
[
'class'
]
=
'phabricator-source-highlight'
;
}
// TODO: Provide nice links.
$th
=
phutil_tag
(
'th'
,
array
(
'class'
=>
'phabricator-source-line'
,
),
$content_number
);
$td
=
phutil_tag
(
'td'
,
array
(
'class'
=>
'phabricator-source-code'
),
$content_line
);
$rows
[]
=
phutil_tag
(
'tr'
,
$row_attributes
,
array
(
$th
,
$td
));
if
(
$hit_limit
)
{
break
;
}
$line_number
++;
}
$classes
=
array
();
$classes
[]
=
'phabricator-source-code-view'
;
$classes
[]
=
'remarkup-code'
;
$classes
[]
=
'PhabricatorMonospaced'
;
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-source-code-container'
,
),
phutil_tag
(
'table'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
),
phutil_implode_html
(
''
,
$rows
)));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 9, 3:16 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3379396
Default Alt Text
ShellLogView.php (2 KB)
Attached To
rP Phabricator
Event Timeline
Log In to Comment