Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1665098
PhabricatorInFlightErrorView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
845 B
Referenced Files
None
Subscribers
None
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
())),
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jul 17, 4:14 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
355892
Default Alt Text
PhabricatorInFlightErrorView.php (845 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment