Remove product literal strings in "pht()", part 6
[phabricator.git] / src / applications / differential / herald / DifferentialRevisionContentRemovedHeraldField.php
blob4278745cea8abc95fd45e3a05a95a31380582a2a
1 <?php
3 final class DifferentialRevisionContentRemovedHeraldField
4 extends DifferentialRevisionHeraldField {
6 const FIELDCONST = 'differential.revision.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;