mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
46d9bebc84
Summary: Fixes T5446. Depends on D9687. Test Plan: Mostly regexp'd this. Lint doesn't complain. Reviewers: chad Reviewed By: chad Subscribers: epriestley, hach-que Maniphest Tasks: T5446 Differential Revision: https://secure.phabricator.com/D9690
70 lines
1.8 KiB
PHP
70 lines
1.8 KiB
PHP
<?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,
|
|
));
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
}
|