Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98107917
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
Thu, Jan 9, 21:05
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 21:05 (2 d)
Engine
blob
Format
Raw Data
Handle
23506826
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