2015-07-08 21:25:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DifferentialDiffContentRemovedHeraldField
|
|
|
|
extends DifferentialDiffHeraldField {
|
|
|
|
|
|
|
|
const FIELDCONST = 'differential.diff.old';
|
|
|
|
|
|
|
|
public function getHeraldFieldName() {
|
|
|
|
return pht('Removed file content');
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:13:13 +02:00
|
|
|
public function getFieldGroupKey() {
|
|
|
|
return DifferentialChangeHeraldFieldGroup::FIELDGROUPKEY;
|
|
|
|
}
|
|
|
|
|
2015-07-08 21:25:38 +02:00
|
|
|
public function getHeraldFieldValue($object) {
|
|
|
|
return $this->getAdapter()->loadRemovedContentDictionary();
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:11:44 +02:00
|
|
|
protected function getHeraldFieldStandardType() {
|
2015-07-08 21:25:38 +02:00
|
|
|
return self::STANDARD_TEXT_MAP;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|