mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 01:32:42 +01:00
0cad6021b6
Summary: Depends on D18867. Ref T13025. Fixes T8740. Rebuilds the tag/subscriber actions (add, remove, set) into the bulk editor. Test Plan: Added, removed and set these values via bulk edit. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13025, T8740 Differential Revision: https://secure.phabricator.com/D18868
96 lines
2.9 KiB
PHP
96 lines
2.9 KiB
PHP
<?php
|
|
|
|
final class PhabricatorProjectsEditEngineExtension
|
|
extends PhabricatorEditEngineExtension {
|
|
|
|
const EXTENSIONKEY = 'projects.projects';
|
|
|
|
const EDITKEY_ADD = 'projects.add';
|
|
const EDITKEY_SET = 'projects.set';
|
|
const EDITKEY_REMOVE = 'projects.remove';
|
|
|
|
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();
|
|
}
|
|
|
|
$viewer = $engine->getViewer();
|
|
|
|
$projects_field = id(new PhabricatorProjectsEditField())
|
|
->setKey('projectPHIDs')
|
|
->setLabel(pht('Tags'))
|
|
->setEditTypeKey('projects')
|
|
->setAliases(array('project', 'projects', 'tag', 'tags'))
|
|
->setIsCopyable(true)
|
|
->setUseEdgeTransactions(true)
|
|
->setCommentActionLabel(pht('Change Project Tags'))
|
|
->setCommentActionOrder(8000)
|
|
->setDescription(pht('Select project tags for the object.'))
|
|
->setTransactionType($edge_type)
|
|
->setMetadataValue('edge:type', $project_edge_type)
|
|
->setValue($project_phids)
|
|
->setViewer($viewer);
|
|
|
|
$projects_datasource = id(new PhabricatorProjectDatasource())
|
|
->setViewer($viewer);
|
|
|
|
$edit_add = $projects_field->getConduitEditType(self::EDITKEY_ADD)
|
|
->setConduitDescription(pht('Add project tags.'));
|
|
|
|
$edit_set = $projects_field->getConduitEditType(self::EDITKEY_SET)
|
|
->setConduitDescription(
|
|
pht('Set project tags, overwriting current value.'));
|
|
|
|
$edit_rem = $projects_field->getConduitEditType(self::EDITKEY_REMOVE)
|
|
->setConduitDescription(pht('Remove project tags.'));
|
|
|
|
$projects_field->getBulkEditType(self::EDITKEY_ADD)
|
|
->setBulkEditLabel(pht('Add project tags'))
|
|
->setDatasource($projects_datasource);
|
|
|
|
$projects_field->getBulkEditType(self::EDITKEY_SET)
|
|
->setBulkEditLabel(pht('Set project tags to'))
|
|
->setDatasource($projects_datasource);
|
|
|
|
$projects_field->getBulkEditType(self::EDITKEY_REMOVE)
|
|
->setBulkEditLabel(pht('Remove project tags'))
|
|
->setDatasource($projects_datasource);
|
|
|
|
return array(
|
|
$projects_field,
|
|
);
|
|
}
|
|
|
|
}
|