Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892489
ArcanistPasteRef.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
ArcanistPasteRef.php
View Options
<?php
final
class
ArcanistPasteRef
extends
ArcanistRef
{
private
$parameters
;
public
function
getRefDisplayName
(
)
{
return
pht
(
'Paste "%s"'
,
$this
->
getMonogram
(
)
)
;
}
public
static
function
newFromConduit
(
array
$parameters
)
{
$ref
=
new
self
(
)
;
$ref
->
parameters
=
$parameters
;
return
$ref
;
}
public
function
getID
(
)
{
return
idx
(
$this
->
parameters
,
'id'
)
;
}
public
function
getPHID
(
)
{
return
idx
(
$this
->
parameters
,
'phid'
)
;
}
public
function
getTitle
(
)
{
return
idxv
(
$this
->
parameters
,
array
(
'fields'
,
'title'
)
)
;
}
public
function
getURI
(
)
{
$uri
=
idxv
(
$this
->
parameters
,
array
(
'fields'
,
'uri'
)
)
;
if
(
$uri
===
null
)
{
$uri
=
'/'
.
$this
->
getMonogram
(
)
;
}
return
$uri
;
}
public
function
getContent
(
)
{
return
idxv
(
$this
->
parameters
,
array
(
'attachments'
,
'content'
,
'content'
)
)
;
}
public
function
getMonogram
(
)
{
return
'P'
.
$this
->
getID
(
)
;
}
protected
function
buildRefView
(
ArcanistRefView
$view
)
{
$view
->
setObjectName
(
$this
->
getMonogram
(
)
)
->
setTitle
(
$this
->
getTitle
(
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 16:53 (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1118923
Default Alt Text
ArcanistPasteRef.php (1 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment