Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282424
ArcanistBuildPlanRef.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
923 B
Referenced Files
None
Subscribers
None
ArcanistBuildPlanRef.php
View Options
<?php
final
class
ArcanistBuildPlanRef
extends
ArcanistRef
{
private
$parameters
;
public
function
getRefDisplayName
(
)
{
return
pht
(
'Build Plan %d'
,
$this
->
getID
(
)
)
;
}
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
getName
(
)
{
return
idxv
(
$this
->
parameters
,
array
(
'fields'
,
'name'
)
)
;
}
public
function
getBehavior
(
$behavior_key
,
$default
=
null
)
{
return
idxv
(
$this
->
parameters
,
array
(
'fields'
,
'behaviors'
,
$behavior_key
,
'value'
)
,
$default
)
;
}
protected
function
buildRefView
(
ArcanistRefView
$view
)
{
$view
->
setObjectName
(
$this
->
getRefDisplayName
(
)
)
->
setTitle
(
$this
->
getName
(
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 07:56 (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1119694
Default Alt Text
ArcanistBuildPlanRef.php (923 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment