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