Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98645645
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
Wed, Jan 15, 05:35
Size
457 B
Mime Type
text/x-php
Expires
Fri, Jan 17, 05:35 (2 d)
Engine
blob
Format
Raw Data
Handle
23613284
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