Differential D15911 Diff 38327 src/applications/differential/customfield/DifferentialCustomField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialCustomField.php
| Show First 20 Lines • Show All 48 Lines • ▼ Show 20 Lines | if (!$handles) { | ||||
| return null; | return null; | ||||
| } | } | ||||
| $out = array(); | $out = array(); | ||||
| foreach ($handles as $handle) { | foreach ($handles as $handle) { | ||||
| if ($handle->getPolicyFiltered()) { | if ($handle->getPolicyFiltered()) { | ||||
| $out[] = $handle->getPHID(); | $out[] = $handle->getPHID(); | ||||
| } else if ($handle->isComplete()) { | } else if ($handle->isComplete()) { | ||||
| $out[] = $handle->getObjectName(); | $out[] = $handle->getCommandLineObjectName(); | ||||
| } | } | ||||
| } | } | ||||
| return implode(', ', $out); | return implode(', ', $out); | ||||
| } | } | ||||
| public function getWarningsForDetailView() { | public function getWarningsForDetailView() { | ||||
| if ($this->getProxy()) { | if ($this->getProxy()) { | ||||
| ▲ Show 20 Lines • Show All 186 Lines • Show Last 20 Lines | |||||