Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112203361
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
Thu, May 8, 20:55
Size
582 B
Mime Type
text/x-php
Expires
Sat, May 10, 20:55 (2 d)
Engine
blob
Format
Raw Data
Handle
25999358
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