Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107052160
PhabricatorConfigEdgeModule.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, Apr 4, 00:39
Size
892 B
Mime Type
text/x-php
Expires
Sun, Apr 6, 00:39 (2 d)
Engine
blob
Format
Raw Data
Handle
25298416
Attached To
rPH Phabricator
PhabricatorConfigEdgeModule.php
View Options
<?php
final
class
PhabricatorConfigEdgeModule
extends
PhabricatorConfigModule
{
public
function
getModuleKey
()
{
return
'edge'
;
}
public
function
getModuleName
()
{
return
pht
(
'Edge Types'
);
}
public
function
renderModuleStatus
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$types
=
PhabricatorEdgeType
::
getAllTypes
();
$types
=
msort
(
$types
,
'getEdgeConstant'
);
$rows
=
array
();
foreach
(
$types
as
$key
=>
$type
)
{
$rows
[]
=
array
(
$type
->
getEdgeConstant
(),
$type
->
getInverseEdgeConstant
(),
get_class
(
$type
),
);
}
return
id
(
new
AphrontTableView
(
$rows
))
->
setHeaders
(
array
(
pht
(
'Constant'
),
pht
(
'Inverse'
),
pht
(
'Class'
),
))
->
setColumnClasses
(
array
(
null
,
null
,
'pri wide'
,
));
}
}
Event Timeline
Log In to Comment