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