Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialRevision.php
| Show First 20 Lines • Show All 464 Lines • ▼ Show 20 Lines | /* -( PhabricatorCustomFieldInterface )------------------------------------ */ | ||||
| public function getCustomFieldSpecificationForRole($role) { | public function getCustomFieldSpecificationForRole($role) { | ||||
| $fields = array( | $fields = array( | ||||
| new DifferentialTitleField(), | new DifferentialTitleField(), | ||||
| new DifferentialSummaryField(), | new DifferentialSummaryField(), | ||||
| new DifferentialTestPlanField(), | new DifferentialTestPlanField(), | ||||
| new DifferentialRepositoryField(), | new DifferentialRepositoryField(), | ||||
| new DifferentialViewPolicyField(), | |||||
| new DifferentialEditPolicyField(), | |||||
| ); | ); | ||||
| return array_fill_keys( | return array_fill_keys( | ||||
| mpull($fields, 'getFieldKey'), | mpull($fields, 'getFieldKey'), | ||||
| array('disabled' => false)); | array('disabled' => false)); | ||||
| } | } | ||||
| public function getCustomFieldBaseClass() { | public function getCustomFieldBaseClass() { | ||||
| Show All 13 Lines | |||||