mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
36 lines
680 B
PHP
36 lines
680 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialHostField
|
||
|
extends DifferentialCustomField {
|
||
|
|
||
|
public function getFieldKey() {
|
||
|
return 'differential:host';
|
||
|
}
|
||
|
|
||
|
public function getFieldName() {
|
||
|
return pht('Host');
|
||
|
}
|
||
|
|
||
|
public function getFieldDescription() {
|
||
|
return pht('Shows the local host where the diff came from.');
|
||
|
}
|
||
|
|
||
|
public function shouldAppearInPropertyView() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function renderPropertyViewLabel() {
|
||
|
return $this->getFieldName();
|
||
|
}
|
||
|
|
||
|
public function renderPropertyViewValue(array $handles) {
|
||
|
$host = $this->getObject()->getActiveDiff()->getSourceMachine();
|
||
|
if (!$host) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
return $host;
|
||
|
}
|
||
|
|
||
|
}
|