Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F549556
TokenConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
TokenConduitAPIMethod.php
View Options
<?php
abstract
class
TokenConduitAPIMethod
extends
ConduitAPIMethod
{
final
public
function
getApplication
()
{
return
PhabricatorApplication
::
getByClass
(
'PhabricatorTokensApplication'
);
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_UNSTABLE
;
}
public
function
buildTokenDicts
(
array
$tokens
)
{
assert_instances_of
(
$tokens
,
'PhabricatorToken'
);
$list
=
array
();
foreach
(
$tokens
as
$token
)
{
$list
[]
=
array
(
'id'
=>
$token
->
getID
(),
'name'
=>
$token
->
getName
(),
'phid'
=>
$token
->
getPHID
(),
);
}
return
$list
;
}
public
function
buildTokenGivenDicts
(
array
$tokens_given
)
{
assert_instances_of
(
$tokens_given
,
'PhabricatorTokenGiven'
);
$list
=
array
();
foreach
(
$tokens_given
as
$given
)
{
$list
[]
=
array
(
'authorPHID'
=>
$given
->
getAuthorPHID
(),
'objectPHID'
=>
$given
->
getObjectPHID
(),
'tokenPHID'
=>
$given
->
getTokenPHID
(),
'dateCreated'
=>
$given
->
getDateCreated
(),
);
}
return
$list
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 2:11 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
99493
Default Alt Text
TokenConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment