mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 09:42:41 +01:00
1bdf988556
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
18 lines
305 B
PHP
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;
|
|
}
|
|
|
|
}
|