Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90957686
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
Wed, Nov 6, 09:49
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 8, 09:49 (2 d)
Engine
blob
Format
Raw Data
Handle
22167501
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