Remove product literal strings in "pht()", part 6
[phabricator.git] / src / applications / differential / herald / DifferentialDiffContentRemovedHeraldField.php
blobd48ff8a697a30aa299721c98be9689aa2e403108
1 <?php
3 final class DifferentialDiffContentRemovedHeraldField
4 extends DifferentialDiffHeraldField {
6 const FIELDCONST = 'differential.diff.old';
8 public function getHeraldFieldName() {
9 return pht('Removed file content');
12 public function getFieldGroupKey() {
13 return DifferentialChangeHeraldFieldGroup::FIELDGROUPKEY;
16 public function getHeraldFieldValue($object) {
17 return $this->getAdapter()->loadRemovedContentDictionary();
20 protected function getHeraldFieldStandardType() {
21 return self::STANDARD_TEXT_MAP;