Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99247468
PhabricatorConfigIssuePanelController.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 22, 18:33
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jan 24, 18:33 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
23715184
Attached To
rPH Phabricator
PhabricatorConfigIssuePanelController.php
View Options
<?php
final
class
PhabricatorConfigIssuePanelController
extends
PhabricatorConfigController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$engine
=
new
PhabricatorSetupEngine
();
$response
=
$engine
->
execute
();
if
(
$response
)
{
return
$response
;
}
$issues
=
$engine
->
getIssues
();
$unresolved_count
=
count
(
$engine
->
getUnresolvedIssues
());
if
(
$issues
)
{
require_celerity_resource
(
'phabricator-notification-menu-css'
);
$items
=
array
();
foreach
(
$issues
as
$issue
)
{
$classes
=
array
();
$classes
[]
=
'phabricator-notification'
;
if
(
$issue
->
getIsIgnored
())
{
$classes
[]
=
'phabricator-notification-read'
;
}
else
{
$classes
[]
=
'phabricator-notification-unread'
;
}
$uri
=
'/config/issue/'
.
$issue
->
getIssueKey
().
'/'
;
$title
=
$issue
->
getName
();
$summary
=
$issue
->
getSummary
();
$items
[]
=
javelin_tag
(
'div'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
'sigil'
=>
'notification'
,
'meta'
=>
array
(
'href'
=>
$uri
,
),
),
$title
);
}
$content
=
phutil_tag_div
(
'setup-issue-menu'
,
$items
);
}
else
{
$content
=
phutil_tag_div
(
'phabricator-notification no-notifications'
,
pht
(
'You have no unresolved setup issues.'
));
}
$content
=
hsprintf
(
'<div class="phabricator-notification-header">%s</div>'
.
'%s'
,
phutil_tag
(
'a'
,
array
(
'href'
=>
'/config/issue/'
,
),
pht
(
'Unresolved Setup Issues'
)),
$content
);
$json
=
array
(
'content'
=>
$content
,
'number'
=>
(
int
)
$unresolved_count
,
);
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
$json
);
}
}
Event Timeline
Log In to Comment