Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92699392
PhabricatorConfigListController.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
Fri, Nov 22, 21:54
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 21:54 (2 d)
Engine
blob
Format
Raw Data
Handle
22489364
Attached To
rPH Phabricator
PhabricatorConfigListController.php
View Options
<?php
final
class
PhabricatorConfigListController
extends
PhabricatorConfigController
{
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$nav
=
$this
->
buildSideNavView
();
$nav
->
selectFilter
(
'/'
);
$groups
=
PhabricatorApplicationConfigOptions
::
loadAll
();
$list
=
$this
->
buildConfigOptionsList
(
$groups
);
$title
=
pht
(
'Phabricator Configuration'
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
);
$nav
->
appendChild
(
array
(
$header
,
$list
,
));
$crumbs
=
$this
->
buildApplicationCrumbs
()
->
addCrumb
(
id
(
new
PhabricatorCrumbView
())
->
setName
(
pht
(
'Config'
))
->
setHref
(
$this
->
getApplicationURI
()));
$nav
->
setCrumbs
(
$crumbs
);
return
$this
->
buildApplicationPage
(
$nav
,
array
(
'title'
=>
$title
,
'device'
=>
true
,
));
}
private
function
buildConfigOptionsList
(
array
$groups
)
{
assert_instances_of
(
$groups
,
'PhabricatorApplicationConfigOptions'
);
$list
=
new
PHUIObjectItemListView
();
$list
->
setStackable
(
true
);
$groups
=
msort
(
$groups
,
'getName'
);
foreach
(
$groups
as
$group
)
{
$item
=
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$group
->
getName
())
->
setHref
(
'/config/group/'
.
$group
->
getKey
().
'/'
)
->
addAttribute
(
$group
->
getDescription
());
$list
->
addItem
(
$item
);
}
return
$list
;
}
}
Event Timeline
Log In to Comment