Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93591718
PhabricatorSettingsPanelGroup.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
Sat, Nov 30, 00:14
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 00:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22672019
Attached To
rPH Phabricator
PhabricatorSettingsPanelGroup.php
View Options
<?php
abstract
class
PhabricatorSettingsPanelGroup
extends
Phobject
{
private
$panels
;
abstract
public
function
getPanelGroupName
();
protected
function
getPanelGroupOrder
()
{
return
1000
;
}
final
public
function
getPanelGroupOrderVector
()
{
return
id
(
new
PhutilSortVector
())
->
addInt
(
$this
->
getPanelGroupOrder
())
->
addString
(
$this
->
getPanelGroupName
());
}
final
public
function
getPanelGroupKey
()
{
return
$this
->
getPhobjectClassConstant
(
'PANELGROUPKEY'
);
}
final
public
static
function
getAllPanelGroups
()
{
$groups
=
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getPanelGroupKey'
)
->
execute
();
return
msortv
(
$groups
,
'getPanelGroupOrderVector'
);
}
final
public
static
function
getAllPanelGroupsWithPanels
()
{
$groups
=
self
::
getAllPanelGroups
();
$panels
=
PhabricatorSettingsPanel
::
getAllPanels
();
$panels
=
mgroup
(
$panels
,
'getPanelGroupKey'
);
foreach
(
$groups
as
$key
=>
$group
)
{
$group
->
panels
=
idx
(
$panels
,
$key
,
array
());
}
return
$groups
;
}
public
function
getPanels
()
{
return
$this
->
panels
;
}
}
Event Timeline
Log In to Comment