Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112018700
PhabricatorConfigResponse.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, May 6, 22:40
Size
1 KB
Mime Type
text/x-php
Expires
Thu, May 8, 22:40 (2 d)
Engine
blob
Format
Raw Data
Handle
26001087
Attached To
rPH Phabricator
PhabricatorConfigResponse.php
View Options
<?php
final
class
PhabricatorConfigResponse
extends
AphrontStandaloneHTMLResponse
{
private
$view
;
public
function
setView
(
PhabricatorSetupIssueView
$view
)
{
$this
->
view
=
$view
;
return
$this
;
}
public
function
getHTTPResponseCode
()
{
return
500
;
}
protected
function
getResources
()
{
return
array
(
'css/application/config/config-template.css'
,
'css/application/config/setup-issue.css'
,
);
}
protected
function
getResponseTitle
()
{
return
pht
(
'Phabricator Setup Error'
);
}
protected
function
getResponseBodyClass
()
{
if
(
PhabricatorSetupCheck
::
isInFlight
())
{
return
'setup-fatal in-flight'
;
}
else
{
return
'setup-fatal'
;
}
}
protected
function
getResponseBody
()
{
$view
=
$this
->
view
;
if
(
PhabricatorSetupCheck
::
isInFlight
())
{
return
$view
->
renderInFlight
();
}
else
{
return
$view
->
render
();
}
}
protected
function
buildPlainTextResponseString
()
{
return
pht
(
'This install has a fatal setup error, access the web interface '
.
'to view details and resolve it.'
);
}
}
Event Timeline
Log In to Comment