mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Remove "Apply Patch" UI field from Differential
Summary: Ref T12026. This simplifies the UI and makes T11114 easier. I plan to integrate this into "Download Raw Diff" in the future. Test Plan: - Browsed revisions. - Grepped for removed class name. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12026 Differential Revision: https://secure.phabricator.com/D17069
This commit is contained in:
parent
a74d602b3c
commit
d12856b5d4
3 changed files with 0 additions and 36 deletions
|
@ -351,7 +351,6 @@ phutil_register_library_map(array(
|
|||
'DifferentialAddCommentView' => 'applications/differential/view/DifferentialAddCommentView.php',
|
||||
'DifferentialAdjustmentMapTestCase' => 'applications/differential/storage/__tests__/DifferentialAdjustmentMapTestCase.php',
|
||||
'DifferentialAffectedPath' => 'applications/differential/storage/DifferentialAffectedPath.php',
|
||||
'DifferentialApplyPatchField' => 'applications/differential/customfield/DifferentialApplyPatchField.php',
|
||||
'DifferentialAsanaRepresentationField' => 'applications/differential/customfield/DifferentialAsanaRepresentationField.php',
|
||||
'DifferentialAuditorsCommitMessageField' => 'applications/differential/field/DifferentialAuditorsCommitMessageField.php',
|
||||
'DifferentialAuditorsField' => 'applications/differential/customfield/DifferentialAuditorsField.php',
|
||||
|
@ -4996,7 +4995,6 @@ phutil_register_library_map(array(
|
|||
'DifferentialAddCommentView' => 'AphrontView',
|
||||
'DifferentialAdjustmentMapTestCase' => 'PhutilTestCase',
|
||||
'DifferentialAffectedPath' => 'DifferentialDAO',
|
||||
'DifferentialApplyPatchField' => 'DifferentialCustomField',
|
||||
'DifferentialAsanaRepresentationField' => 'DifferentialCustomField',
|
||||
'DifferentialAuditorsCommitMessageField' => 'DifferentialCommitMessageCustomField',
|
||||
'DifferentialAuditorsField' => 'DifferentialStoredCustomField',
|
||||
|
|
|
@ -58,8 +58,6 @@ final class PhabricatorDifferentialConfigOptions
|
|||
new DifferentialUnitField(),
|
||||
new DifferentialRevertPlanField(),
|
||||
|
||||
new DifferentialApplyPatchField(),
|
||||
|
||||
new DifferentialRevisionIDField(),
|
||||
);
|
||||
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
<?php
|
||||
|
||||
final class DifferentialApplyPatchField
|
||||
extends DifferentialCustomField {
|
||||
|
||||
public function getFieldKey() {
|
||||
return 'differential:apply-patch';
|
||||
}
|
||||
|
||||
public function getFieldName() {
|
||||
return pht('Apply Patch');
|
||||
}
|
||||
|
||||
public function getFieldDescription() {
|
||||
return pht('Provides instructions for applying a local patch.');
|
||||
}
|
||||
|
||||
public function shouldAppearInPropertyView() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function renderPropertyViewLabel() {
|
||||
return $this->getFieldName();
|
||||
}
|
||||
|
||||
public function renderPropertyViewValue(array $handles) {
|
||||
$mono = $this->getObject()->getMonogram();
|
||||
|
||||
return phutil_tag('tt', array(), "arc patch {$mono}");
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue