Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialHostField.php
| Show All 9 Lines | final class DifferentialHostField | ||||
| public function getFieldName() { | public function getFieldName() { | ||||
| return pht('Host'); | return pht('Host'); | ||||
| } | } | ||||
| public function getFieldDescription() { | public function getFieldDescription() { | ||||
| return pht('Shows the local host where the diff came from.'); | return pht('Shows the local host where the diff came from.'); | ||||
| } | } | ||||
| public function shouldDisableByDefault() { | |||||
| return true; | |||||
| } | |||||
| public function shouldAppearInPropertyView() { | public function shouldAppearInPropertyView() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function renderPropertyViewLabel() { | public function renderPropertyViewLabel() { | ||||
| return $this->getFieldName(); | return $this->getFieldName(); | ||||
| } | } | ||||
| Show All 10 Lines | |||||