Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91495507
PhrictionConduitAPIMethod.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
Mon, Nov 11, 16:16
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Nov 13, 16:16 (2 d)
Engine
blob
Format
Raw Data
Handle
22270491
Attached To
rPH Phabricator
PhrictionConduitAPIMethod.php
View Options
<?php
abstract
class
PhrictionConduitAPIMethod
extends
ConduitAPIMethod
{
final
public
function
getApplication
()
{
return
PhabricatorApplication
::
getByClass
(
'PhabricatorPhrictionApplication'
);
}
final
protected
function
buildDocumentInfoDictionary
(
PhrictionDocument
$doc
)
{
$content
=
$doc
->
getContent
();
return
$this
->
buildDocumentContentDictionary
(
$doc
,
$content
);
}
final
protected
function
buildDocumentContentDictionary
(
PhrictionDocument
$doc
,
PhrictionContent
$content
)
{
$uri
=
PhrictionDocument
::
getSlugURI
(
$content
->
getSlug
());
$uri
=
PhabricatorEnv
::
getProductionURI
(
$uri
);
$doc_status
=
$doc
->
getStatus
();
return
array
(
'phid'
=>
$doc
->
getPHID
(),
'uri'
=>
$uri
,
'slug'
=>
$content
->
getSlug
(),
'version'
=>
$content
->
getVersion
(),
'authorPHID'
=>
$content
->
getAuthorPHID
(),
'title'
=>
$content
->
getTitle
(),
'content'
=>
$content
->
getContent
(),
'status'
=>
PhrictionDocumentStatus
::
getConduitConstant
(
$doc_status
),
'description'
=>
$content
->
getDescription
(),
'dateCreated'
=>
$content
->
getDateCreated
(),
);
}
}
Event Timeline
Log In to Comment