Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101870440
PasteConduitAPIMethod.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, Feb 14, 14:30
Size
836 B
Mime Type
text/x-php
Expires
Sun, Feb 16, 14:30 (2 d)
Engine
blob
Format
Raw Data
Handle
24245209
Attached To
rPH Phabricator
PasteConduitAPIMethod.php
View Options
<?php
abstract
class
PasteConduitAPIMethod
extends
ConduitAPIMethod
{
final
public
function
getApplication
()
{
return
PhabricatorApplication
::
getByClass
(
'PhabricatorPasteApplication'
);
}
protected
function
buildPasteInfoDictionary
(
PhabricatorPaste
$paste
)
{
return
array
(
'id'
=>
$paste
->
getID
(),
'objectName'
=>
'P'
.
$paste
->
getID
(),
'phid'
=>
$paste
->
getPHID
(),
'authorPHID'
=>
$paste
->
getAuthorPHID
(),
'filePHID'
=>
$paste
->
getFilePHID
(),
'title'
=>
$paste
->
getTitle
(),
'dateCreated'
=>
$paste
->
getDateCreated
(),
'language'
=>
$paste
->
getLanguage
(),
'uri'
=>
PhabricatorEnv
::
getProductionURI
(
'/P'
.
$paste
->
getID
()),
'parentPHID'
=>
$paste
->
getParentPHID
(),
'content'
=>
$paste
->
getRawContent
(),
);
}
}
Event Timeline
Log In to Comment