Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98234415
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
Sat, Jan 11, 07:53
Size
845 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 07:53 (2 d)
Engine
blob
Format
Raw Data
Handle
23537617
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