Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100387474
PhabricatorConfigModule.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, Jan 30, 10:27
Size
457 B
Mime Type
text/x-php
Expires
Sat, Feb 1, 10:27 (1 d, 13 h)
Engine
blob
Format
Raw Data
Handle
23930965
Attached To
rPH Phabricator
PhabricatorConfigModule.php
View Options
<?php
abstract
class
PhabricatorConfigModule
extends
Phobject
{
abstract
public
function
getModuleKey
();
abstract
public
function
getModuleName
();
abstract
public
function
renderModuleStatus
(
AphrontRequest
$request
);
final
public
static
function
getAllModules
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getModuleKey'
)
->
setSortMethod
(
'getModuleName'
)
->
execute
();
}
}
Event Timeline
Log In to Comment