1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-15 03:12:41 +01:00
phorge-phorge/src/applications/transactions/editfield/PhabricatorHandlesEditField.php
epriestley d53187e10a Make "Create Subtask" work properly in EditEngine
Summary: Ref T9908. This fixes "Create Subtask" so it works with the new stuff. Mostly straightforward.

Test Plan: Created some subtasks.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9908

Differential Revision: https://secure.phabricator.com/D14706
2015-12-08 14:29:58 -08:00

14 lines
284 B
PHP

<?php
final class PhabricatorHandlesEditField
extends PhabricatorPHIDListEditField {
protected function newControl() {
return id(new AphrontFormHandlesControl());
}
protected function newHTTPParameterType() {
return new ManiphestTaskListHTTPParameterType();
}
}