Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92376741
DarkConsoleRealtimePlugin.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
Tue, Nov 19, 19:43
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 21, 19:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22431364
Attached To
rPH Phabricator
DarkConsoleRealtimePlugin.php
View Options
<?php
final
class
DarkConsoleRealtimePlugin
extends
DarkConsolePlugin
{
public
function
getName
()
{
return
pht
(
'Realtime'
);
}
public
function
getColor
()
{
return
null
;
}
public
function
getDescription
()
{
return
pht
(
'Debugging console for real-time notifications.'
);
}
public
function
renderPanel
()
{
$frame
=
phutil_tag
(
'div'
,
array
(
'id'
=>
'dark-console-realtime-log'
,
'class'
=>
'dark-console-log-frame'
,
));
$reconnect_label
=
pht
(
'Reconnect'
);
$replay_label
=
pht
(
'Replay'
);
$repaint_label
=
pht
(
'Repaint'
);
$buttons
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'dark-console-realtime-actions'
,
),
array
(
id
(
new
PHUIButtonView
())
->
setIcon
(
'fa-refresh'
)
->
setColor
(
PHUIButtonView
::
GREY
)
->
setText
(
$reconnect_label
)
->
addSigil
(
'dark-console-realtime-action'
)
->
setMetadata
(
array
(
'action'
=>
'reconnect'
,
'label'
=>
$reconnect_label
,
)),
id
(
new
PHUIButtonView
())
->
setIcon
(
'fa-backward'
)
->
setColor
(
PHUIButtonView
::
GREY
)
->
setText
(
$replay_label
)
->
addSigil
(
'dark-console-realtime-action'
)
->
setMetadata
(
array
(
'action'
=>
'replay'
,
'label'
=>
$replay_label
,
)),
id
(
new
PHUIButtonView
())
->
setIcon
(
'fa-paint-brush'
)
->
setColor
(
PHUIButtonView
::
GREY
)
->
setText
(
$repaint_label
)
->
addSigil
(
'dark-console-realtime-action'
)
->
setMetadata
(
array
(
'action'
=>
'repaint'
,
'label'
=>
$repaint_label
,
)),
));
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'dark-console-realtime'
,
),
array
(
$buttons
,
$frame
,
));
}
}
Event Timeline
Log In to Comment