Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122500627
ConduitAPI_phid_Method.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, Jul 18, 04:46
Size
685 B
Mime Type
text/x-php
Expires
Sun, Jul 20, 04:46 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27481070
Attached To
rPH Phabricator
ConduitAPI_phid_Method.php
View Options
<?php
/**
* @group conduit
*/
abstract
class
ConduitAPI_phid_Method
extends
ConduitAPIMethod
{
public
function
getApplication
()
{
return
PhabricatorApplication
::
getByClass
(
'PhabricatorApplicationPHID'
);
}
protected
function
buildHandleInformationDictionary
(
PhabricatorObjectHandle
$handle
)
{
return
array
(
'phid'
=>
$handle
->
getPHID
(),
'uri'
=>
PhabricatorEnv
::
getProductionURI
(
$handle
->
getURI
()),
'typeName'
=>
$handle
->
getTypeName
(),
'type'
=>
$handle
->
getType
(),
'name'
=>
$handle
->
getName
(),
'fullName'
=>
$handle
->
getFullName
(),
'status'
=>
$handle
->
getStatus
(),
);
}
}
Event Timeline
Log In to Comment