[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class DifferentialHostField 4 extends DifferentialCustomField { 5 6 public function getFieldKey() { 7 return 'differential:host'; 8 } 9 10 public function getFieldName() { 11 return pht('Host'); 12 } 13 14 public function getFieldDescription() { 15 return pht('Shows the local host where the diff came from.'); 16 } 17 18 public function shouldDisableByDefault() { 19 return true; 20 } 21 22 public function shouldAppearInPropertyView() { 23 return true; 24 } 25 26 public function renderPropertyViewLabel() { 27 return $this->getFieldName(); 28 } 29 30 public function renderPropertyViewValue(array $handles) { 31 $host = $this->getObject()->getActiveDiff()->getSourceMachine(); 32 if (!$host) { 33 return null; 34 } 35 36 return $host; 37 } 38 39 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |