Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92697212
PhabricatorProjectsEditEngineExtension.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, Nov 22, 21:20
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 21:20 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22489502
Attached To
rPH Phabricator
PhabricatorProjectsEditEngineExtension.php
View Options
<?php
final
class
PhabricatorProjectsEditEngineExtension
extends
PhabricatorEditEngineExtension
{
const
EXTENSIONKEY
=
'projects.projects'
;
public
function
getExtensionPriority
()
{
return
500
;
}
public
function
isExtensionEnabled
()
{
return
PhabricatorApplication
::
isClassInstalled
(
'PhabricatorProjectApplication'
);
}
public
function
getExtensionName
()
{
return
pht
(
'Projects'
);
}
public
function
supportsObject
(
PhabricatorEditEngine
$engine
,
PhabricatorApplicationTransactionInterface
$object
)
{
return
(
$object
instanceof
PhabricatorProjectInterface
);
}
public
function
buildCustomEditFields
(
PhabricatorEditEngine
$engine
,
PhabricatorApplicationTransactionInterface
$object
)
{
$edge_type
=
PhabricatorTransactions
::
TYPE_EDGE
;
$project_edge_type
=
PhabricatorProjectObjectHasProjectEdgeType
::
EDGECONST
;
$object_phid
=
$object
->
getPHID
();
if
(
$object_phid
)
{
$project_phids
=
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$object_phid
,
$project_edge_type
);
$project_phids
=
array_reverse
(
$project_phids
);
}
else
{
$project_phids
=
array
();
}
$projects_field
=
id
(
new
PhabricatorProjectsEditField
())
->
setKey
(
'projectPHIDs'
)
->
setLabel
(
pht
(
'Projects'
))
->
setEditTypeKey
(
'projects'
)
->
setDescription
(
pht
(
'Add or remove associated projects.'
))
->
setAliases
(
array
(
'project'
,
'projects'
))
->
setIsCopyable
(
true
)
->
setUseEdgeTransactions
(
true
)
->
setEdgeTransactionDescriptions
(
pht
(
'Add projects.'
),
pht
(
'Remove projects.'
),
pht
(
'Set associated projects, overwriting current value.'
))
->
setCommentActionLabel
(
pht
(
'Add Projects'
))
->
setTransactionType
(
$edge_type
)
->
setMetadataValue
(
'edge:type'
,
$project_edge_type
)
->
setValue
(
$project_phids
);
return
array
(
$projects_field
,
);
}
}
Event Timeline
Log In to Comment