Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107780918
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
Thu, Apr 10, 17:36
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Apr 12, 17:36 (2 d)
Engine
blob
Format
Raw Data
Handle
25462840
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
PhabricatorHeaderView
())
->
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