Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2891991
PhabricatorIndexEngineExtensionModule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
816 B
Referenced Files
None
Subscribers
None
PhabricatorIndexEngineExtensionModule.php
View Options
<?php
final
class
PhabricatorIndexEngineExtensionModule
extends
PhabricatorConfigModule
{
public
function
getModuleKey
(
)
{
return
'indexengine'
;
}
public
function
getModuleName
(
)
{
return
pht
(
'Engine: Index'
)
;
}
public
function
renderModuleStatus
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
(
)
;
$extensions
=
PhabricatorIndexEngineExtension
::
getAllExtensions
(
)
;
$rows
=
array
(
)
;
foreach
(
$extensions
as
$extension
)
{
$rows
[
]
=
array
(
get_class
(
$extension
)
,
$extension
->
getExtensionName
(
)
,
)
;
}
return
id
(
new
AphrontTableView
(
$rows
)
)
->
setHeaders
(
array
(
pht
(
'Class'
)
,
pht
(
'Name'
)
,
)
)
->
setColumnClasses
(
array
(
null
,
'wide pri'
,
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 16:02 (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1126294
Default Alt Text
PhabricatorIndexEngineExtensionModule.php (816 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment