1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-28 09:42:41 +01:00
phorge-phorge/src/applications/transactions/editfield/PhabricatorStaticEditField.php
epriestley 1bdf988556 Convert DrydockBlueprints to EditEngine
Summary:
Ref T10457. Fixes T10024. This primarily just modernizes blueprints to use EditEngine.

This also fixes T10024, which was an issue with stored properties not being flagged correctly.

Also slightly improves typeaheads for blueprints (more information, disabled state).

Test Plan:
  - Created and edited various types of blueprints.
  - Set and removed limits.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10024, T10457

Differential Revision: https://secure.phabricator.com/D15390
2016-03-03 15:21:25 -08:00

18 lines
305 B
PHP

<?php
final class PhabricatorStaticEditField
extends PhabricatorEditField {
protected function newControl() {
return new AphrontFormMarkupControl();
}
protected function newHTTPParameterType() {
return null;
}
protected function newConduitParameterType() {
return null;
}
}