Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97992991
PhabricatorConfigIssueViewController.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, Jan 8, 09:25
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jan 10, 09:25 (2 d)
Engine
blob
Format
Raw Data
Handle
23474507
Attached To
rPH Phabricator
PhabricatorConfigIssueViewController.php
View Options
<?php
final
class
PhabricatorConfigIssueViewController
extends
PhabricatorConfigController
{
private
$issueKey
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
issueKey
=
$data
[
'key'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$issues
=
PhabricatorSetupCheck
::
runAllChecks
();
PhabricatorSetupCheck
::
setOpenSetupIssueCount
(
PhabricatorSetupCheck
::
countUnignoredIssues
(
$issues
));
if
(
empty
(
$issues
[
$this
->
issueKey
]))
{
$content
=
id
(
new
AphrontErrorView
())
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NOTICE
)
->
setTitle
(
pht
(
'Issue Resolved'
))
->
appendChild
(
pht
(
'This setup issue has been resolved. '
))
->
appendChild
(
phutil_tag
(
'a'
,
array
(
'href'
=>
$this
->
getApplicationURI
(
'issue/'
),
),
pht
(
'Return to Open Issue List'
)));
$title
=
pht
(
'Resolved Issue'
);
}
else
{
$issue
=
$issues
[
$this
->
issueKey
];
$content
=
$this
->
renderIssue
(
$issue
);
$title
=
$issue
->
getShortName
();
}
$crumbs
=
$this
->
buildApplicationCrumbs
()
->
addTextCrumb
(
pht
(
'Setup Issues'
),
$this
->
getApplicationURI
(
'issue/'
))
->
addTextCrumb
(
$title
,
$request
->
getRequestURI
());
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$content
,
),
array
(
'title'
=>
$title
,
'device'
=>
true
,
));
}
private
function
renderIssue
(
PhabricatorSetupIssue
$issue
)
{
require_celerity_resource
(
'setup-issue-css'
);
$view
=
new
PhabricatorSetupIssueView
();
$view
->
setIssue
(
$issue
);
$container
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'setup-issue-background'
,
),
$view
->
render
());
return
$container
;
}
}
Event Timeline
Log In to Comment