Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91918439
DiffusionRepositoryManagementPanelGroup.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 15, 17:42
Size
582 B
Mime Type
text/x-php
Expires
Sun, Nov 17, 17:42 (2 d)
Engine
blob
Format
Raw Data
Handle
22347127
Attached To
rPH Phabricator
DiffusionRepositoryManagementPanelGroup.php
View Options
<?php
abstract
class
DiffusionRepositoryManagementPanelGroup
extends
Phobject
{
final
public
function
getManagementPanelGroupKey
()
{
return
$this
->
getPhobjectClassConstant
(
'PANELGROUPKEY'
);
}
abstract
public
function
getManagementPanelGroupOrder
();
abstract
public
function
getManagementPanelGroupLabel
();
public
static
function
getAllPanelGroups
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getManagementPanelGroupKey'
)
->
setSortMethod
(
'getManagementPanelGroupOrder'
)
->
execute
();
}
}
Event Timeline
Log In to Comment