Differential D17067 Diff 41083 src/applications/differential/field/DifferentialReviewedByCommitMessageField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/field/DifferentialReviewedByCommitMessageField.php
| Show All 21 Lines | return $this->parseObjectList( | ||||
| ), | ), | ||||
| $allow_partial = true); | $allow_partial = true); | ||||
| } | } | ||||
| public function isFieldEditable() { | public function isFieldEditable() { | ||||
| return false; | return false; | ||||
| } | } | ||||
| public function isTemplateField() { | |||||
| return false; | |||||
| } | |||||
| public function readFieldValueFromObject(DifferentialRevision $revision) { | public function readFieldValueFromObject(DifferentialRevision $revision) { | ||||
| if (!$revision->getPHID()) { | if (!$revision->getPHID()) { | ||||
| return array(); | return array(); | ||||
| } | } | ||||
| $phids = array(); | $phids = array(); | ||||
| foreach ($revision->getReviewerStatus() as $reviewer) { | foreach ($revision->getReviewerStatus() as $reviewer) { | ||||
| switch ($reviewer->getStatus()) { | switch ($reviewer->getStatus()) { | ||||
| Show All 19 Lines | |||||