Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialDraftField.php
| Show All 18 Lines | protected function readValueFromRevision( | ||||
| DifferentialRevision $revision) { | DifferentialRevision $revision) { | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function shouldAppearInPropertyView() { | public function shouldAppearInPropertyView() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function renderPropertyViewValue() { | public function renderPropertyViewValue(array $handles) { | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getWarningsForRevisionHeader(array $handles) { | public function getWarningsForRevisionHeader(array $handles) { | ||||
| $viewer = $this->getViewer(); | $viewer = $this->getViewer(); | ||||
| $revision = $this->getObject(); | $revision = $this->getObject(); | ||||
| if (!$revision->isDraft()) { | if (!$revision->isDraft()) { | ||||
| ▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines | |||||