Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91323995
PhabricatorInFlightErrorView.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
Sun, Nov 10, 00:24
Size
845 B
Mime Type
text/x-php
Expires
Tue, Nov 12, 00:24 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22241437
Attached To
rPH Phabricator
PhabricatorInFlightErrorView.php
View Options
<?php
final
class
PhabricatorInFlightErrorView
extends
AphrontView
{
private
$message
;
public
function
setMessage
(
$message
)
{
$this
->
message
=
$message
;
return
$this
;
}
public
function
getMessage
()
{
return
$this
->
message
;
}
public
function
render
()
{
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'in-flight-error-detail'
,
),
array
(
phutil_tag
(
'h1'
,
array
(
'class'
=>
'in-flight-error-title'
,
),
pht
(
'A Troublesome Encounter!'
)),
phutil_tag
(
'div'
,
array
(
'class'
=>
'in-flight-error-body'
,
),
pht
(
'Woe! This request had its journey cut short by unexpected '
.
'circumstances (%s).'
,
$this
->
getMessage
())),
));
}
}
Event Timeline
Log In to Comment