Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91314510
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, Nov 9, 22:22
Size
845 B
Mime Type
text/x-php
Expires
Mon, Nov 11, 22:22 (2 d)
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